Hello,
With Arm instruction set (codeModel=32), this interrupt vectors compile, but it codeModel=16 and -mt switch, it doesn`t, I got this error:
"../sys_intvecs.asm", ERROR! at line 65: [E0200] Offset out of range, must be
[-255,4095]
ldr pc,[pc,#-0x1b0]
Someone could help?
CCS 4.2.3.00004
Simon
;-------------------------------------------------------------------------------
; interrupt vectors
.sect ".intvecs"
.if 1
b _c_int00
.else
b #-8
.endif
.if 0
b _undef
.else
b #-8
.endif
.if 0
b _svc
.else
b #-8
.endif
.if 0
b _prefetch
.else
b #-8
.endif
.if 0
b _data
.else
b #-8
.endif
b #-8
.if 0
b _irqDispatch
.else
ldr pc,[pc,#-0x1b0]
.endif
ldr pc,[pc,#-0x1b0]