你可以在CW下新建个DZ60的工程。
meomory的地址可以参考工程中的prm文件。
/* This is a linker parameter file for the mc9s08dz60 */
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;
RAM = READ_WRITE 0x0100 TO 0x107F;
ROM = READ_ONLY 0x1900 TO 0xFFAD;
ROM1 = READ_ONLY 0x1080 TO 0x13FF;
EEPROM = READ_ONLY 0x1400 TO 0x17FF;
/* INTVECTS = READ_ONLY 0xFFC0 TO 0xFFFF; Reserved for Interrupt Vectors */
END