/* This is a linker parameter file for the mc9s08qg8 */ NAMES END /* CodeWarrior will pass all the needed files to the linker by command line. But here you may add your own files too. */ SEGMENTS /* Here all RAM/ROM areas of the device are listed. Used in PLACEMENT below. */ SHARED_RAM = READ_WRITE 0x0060 TO 0x0084; Z_RAM = READ_WRITE 0x0085 TO 0x00FF; RAM = READ_WRITE 0x0100 TO 0x025F; P0 = READ_ONLY 0xE000 TO 0xE1FF; ROM = READ_ONLY 0xE200 TO 0xFFAD; ROM1 = READ_ONLY 0xFFC0 TO 0xFFCF; INTVECTS = READ_ONLY 0xFFD0 TO 0xFFFF; /*Reserved for Interrupt Vectors */ END PLACEMENT /* Here all predefined and user segments are placed into the SEGMENTS defined above. */ DEFAULT_RAM /* non-zero page variables */ INTO RAM; _PRESTART, /* startup code */ STARTUP, /* startup data structures */ ROM_VAR, /* constant variables */ STRINGS, /* string literals */ VIRTUAL_TABLE_SEGMENT, /* C++ virtual table segment */ DEFAULT_ROM, COPY /* copy down information: how to initialize variables */ INTO ROM; /* ,ROM1: To use "ROM1" as well, pass the option -OnB=b to the compiler */ _DATA_ZEROPAGE, /* zero page variables */ VKSP_ZERO_RAM, MY_ZEROPAGE INTO Z_RAM; PAGE0 INTO P0; AES_TEMP_RAM INTO SHARED_RAM; VECTORS_DATA INTO INTVECTS; END STACKSIZE 0x80 ENTRIES _vectab END INIT _Startup /* contains line replacing default _PRESTART */