mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-20 15:53:29 +08: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
|