mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
16 lines
167 B
ArmAsm
16 lines
167 B
ArmAsm
.macro sym n:req
|
|
.if \n
|
|
.globl bar\@
|
|
.type bar\@, @object
|
|
bar\@ :
|
|
.byte 0
|
|
.size bar\@, . - bar\@
|
|
sym \n - 1
|
|
.endif
|
|
.endm
|
|
|
|
.text
|
|
.align 4
|
|
.space 32
|
|
sym 16
|