DEFAULT_ROM, NON_BANKED, /* runtime routines which must not be banked */ COPY /* copy down information: how to initialize variables */ /* in case you want to use ROM_4000 here as well, make sure that all files (incl. library files) are compiled with the option: -OnB=b */ INTO ROM_C000/*, ROM_4000*/; “#pragma CODE_SEG NON_BANKED”即使对中断进行了分配,仍然跟其他程序一起存放在NON_BANKED区域(0xC000) |