exception_vectors.S: Use .Lnnn syntax for local labels, as noted by @foogod
This commit is contained in:
parent
d39b3f6bb6
commit
0d35c0c02d
1 changed files with 3 additions and 3 deletions
|
@ -501,8 +501,8 @@ UserExceptionHandler:
|
||||||
rsync
|
rsync
|
||||||
rsr a2, exccause
|
rsr a2, exccause
|
||||||
/* Any UserException cause other than a level 1 interrupt is fatal */
|
/* Any UserException cause other than a level 1 interrupt is fatal */
|
||||||
bnei a2, CAUSE_LVL1INT, .UserFailOtherExceptionCause
|
bnei a2, CAUSE_LVL1INT, .LUserFailOtherExceptionCause
|
||||||
.UserHandleInterrupt:
|
.LUserHandleInterrupt:
|
||||||
rsil a0, 1
|
rsil a0, 1
|
||||||
rsr a2, intenable
|
rsr a2, intenable
|
||||||
rsr a3, interrupt
|
rsr a3, interrupt
|
||||||
|
@ -513,7 +513,7 @@ UserExceptionHandler:
|
||||||
j sdk__xt_int_exit # once finished, jumps to _xt_user_exit via stack
|
j sdk__xt_int_exit # once finished, jumps to _xt_user_exit via stack
|
||||||
|
|
||||||
.literal_position
|
.literal_position
|
||||||
.UserFailOtherExceptionCause:
|
.LUserFailOtherExceptionCause:
|
||||||
break 1, 1
|
break 1, 1
|
||||||
call0 sdk_user_fatal_exception_handler
|
call0 sdk_user_fatal_exception_handler
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue