www.pudn.com > OSBDM08.zip > linker.prm


NAMES END 
 
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 0x013F; 
  ROM    = READ_ONLY  0xDC00 TO 0xFBFF; 
END 
 
PLACEMENT             /* here all predefined and user segments are placed into the SEGMENTS defined above. */ 
  DEFAULT_ROM                   INTO ROM; 
  FAR_RAM, .stack               INTO RAM; 
  _DATA_ZEROPAGE, MY_ZEROPAGE, DEFAULT_RAM INTO Z_RAM; 
END 
 
STACKSIZE 0x40 
 
DEPENDENCY 
  ROOT  
  END 
END 
 
VECTOR 0 _Startup     /* reset vector: this is the default entry point for a C/C++ application. */ 
//VECTOR 1 test /* SWI */ 
VECTOR 2 usb_isr /* USB */ 
//VECTOR 3 test /* IRQ */ 
//VECTOR 4 test /* TIM 0 */ 
//VECTOR 5 /* TIM 1 */ 
//VECTOR 6 test /* TIM overflow */ 
VECTOR 15 bdm_reset_sense /* KBD */