1/*
2 *   Copyright 2004-2006 by Green Hills Software,Inc.
3 *
4 *  This program is the property of Green Hills Software, Inc,
5 *  its contents are proprietary information and no part of it
6 *  is to be disclosed to anyone except employees of Green Hills
7 *  Software, Inc., or as agreed in writing signed by the President
8 *  of Green Hills Software, Inc.
9 */
10
11/* For COFF, we want to include the number of Global Registers in the
12 * symbol table.
13 */
14#if defined(__COFF) && defined(__GlobalRegisters)
15	.def	_GREG
16	.scl	3
17	.type	 4
18	.val	__GlobalRegisters
19	.endef
20#endif
21#if defined(__COFF) && defined(__GlobalFloatingPointRegisters)
22	.def	_FPGREG
23	.scl	3
24	.type	 4
25	.val	__GlobalFloatingPointRegisters
26	.endef
27#endif
28
29/* For code that might use isel or e500 SIMD instructions, remember to
30 * mark them with the appropriate APU numbers.
31 */
32#if defined(__SPE__) && defined(USES_SPE)
33	.note ".PPC.EMB.apuinfo",""
34	.long	0x00000008
35	.long	8
36	.long	0x00000002
37	.byte	65,80,85,105
38	.byte	110,102,111,0
39	.long	0x00400001
40	.long	0x01000001
41#endif
42