mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
13 lines
148 B
ArmAsm
13 lines
148 B
ArmAsm
.file "hello.c"
|
|
.text
|
|
.align 8
|
|
.globl main
|
|
.type main, @function
|
|
main:
|
|
brasl %r5,foo@PLT
|
|
br %r4
|
|
.size main, .-main
|
|
|
|
.globl foo
|
|
foo: .long 123
|