mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
14 lines
204 B
ArmAsm
14 lines
204 B
ArmAsm
|
.text
|
||
|
.globl _start
|
||
|
_start:
|
||
|
.word datavar
|
||
|
.word rodatavar
|
||
|
|
||
|
.section ".rodata", "a"
|
||
|
rodatavar:
|
||
|
.word 0
|
||
|
|
||
|
.section ".data", "aw"
|
||
|
datavar:
|
||
|
.word 0
|