26 lines
352 B
ArmAsm
26 lines
352 B
ArmAsm
#
|
|
! $Source$
|
|
! $State$
|
|
! $Revision$
|
|
|
|
! Declare segments (the order is important).
|
|
|
|
.sect .text
|
|
.sect .rom
|
|
.sect .data
|
|
.sect .bss
|
|
|
|
#define D(e) .define e; e
|
|
|
|
.sect .data
|
|
|
|
D(ERANGE) = 1
|
|
D(ESET) = 2
|
|
D(EIDIVZ) = 6
|
|
D(EHEAP) = 17
|
|
D(EILLINS) = 18
|
|
D(EODDZ) = 19
|
|
D(ECASE) = 20
|
|
D(EBADMON) = 25
|
|
|