/* * Copyright 2004-2006 by Green Hills Software,Inc. * * This program is the property of Green Hills Software, Inc, * its contents are proprietary information and no part of it * is to be disclosed to anyone except employees of Green Hills * Software, Inc., or as agreed in writing signed by the President * of Green Hills Software, Inc. */ /* For COFF, we want to include the number of Global Registers in the * symbol table. */ #if defined(__COFF) && defined(__GlobalRegisters) .def _GREG .scl 3 .type 4 .val __GlobalRegisters .endef #endif #if defined(__COFF) && defined(__GlobalFloatingPointRegisters) .def _FPGREG .scl 3 .type 4 .val __GlobalFloatingPointRegisters .endef #endif /* For code that might use isel or e500 SIMD instructions, remember to * mark them with the appropriate APU numbers. */ #if defined(__SPE__) && defined(USES_SPE) .note ".PPC.EMB.apuinfo","" .long 0x00000008 .long 8 .long 0x00000002 .byte 65,80,85,105 .byte 110,102,111,0 .long 0x00400001 .long 0x01000001 #endif