mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +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
|