mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +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
|