mirror of
https://github.com/pret/pokeheartgold.git
synced 2024-11-23 13:20:02 +00:00
13 lines
214 B
PHP
13 lines
214 B
PHP
.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
|