mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
16 lines
225 B
ArmAsm
16 lines
225 B
ArmAsm
.text
|
|
.p2align 4
|
|
.globl _start
|
|
.type _start, @function
|
|
_start:
|
|
ret
|
|
.size _start, .-_start
|
|
.globl ptr
|
|
.section .rodata
|
|
.align 8
|
|
.type ptr, @object
|
|
.size ptr, 8
|
|
ptr:
|
|
.quad foo
|
|
.section .note.GNU-stack,"",@progbits
|