mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-05 22:32:37 +00:00
12 lines
118 B
ArmAsm
12 lines
118 B
ArmAsm
|
.macro makebss
|
||
|
.section .bss_\@,"aw",%nobits
|
||
|
.space 0x10000
|
||
|
.endm
|
||
|
|
||
|
.rept 80
|
||
|
makebss
|
||
|
.endr
|
||
|
|
||
|
.text
|
||
|
.space 0x10
|