blob: 14841f11cb805ae01b838cfdcf76358921494904 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
.macro exception what, size, data
.section .exceptix,4,1,2
.balign 4, 0
.type ?exc$\what, @object
.global ?exc$\what
.size ?exc$\what, 12
?exc$\what:
.word \what
.short \size
.word \data
.previous
.endm
|