mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
15 lines
214 B
ArmAsm
15 lines
214 B
ArmAsm
.text
|
|
.globl orig
|
|
.type orig, @function
|
|
orig:
|
|
xorl %eax, %eax
|
|
ret
|
|
.size orig, .-orig
|
|
.section .text.startup,"ax",@progbits
|
|
.globl main
|
|
.type main, @function
|
|
main:
|
|
xorl %eax, %eax
|
|
ret
|
|
.size main, .-main
|