/* This is a linker parameter file for the mc68hc908jk1 */ 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. */ Z_RAM = READ_WRITE 0x0080 TO 0x00FF; ROM = READ_ONLY 0xF600 TO 0xFBFF; /* INTVECTS = READ_ONLY 0xFFDE TO 0xFFFF; Reserved for Interrupt Vectors */ END PLACEMENT /* Here all predefined and user segments are placed into the SEGMENTS defined above. */ _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; FAR_RAM , /* non-zero page variables */ _DATA_ZEROPAGE, /* zero page variables */ MY_ZEROPAGE, DEFAULT_RAM INTO Z_RAM; END STACKSIZE 0x30 //VECTOR 0 _Startup /* Reset vector: this is the default entry point for an application. */