mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-12 03:05:37 +00:00
17 lines
196 B
ArmAsm
17 lines
196 B
ArmAsm
.globl main
|
|
.globl start
|
|
.globl _start
|
|
.globl __start
|
|
.text
|
|
main:
|
|
start:
|
|
_start:
|
|
__start:
|
|
.byte 0
|
|
.globl tbss
|
|
.section .tbss,"awT",%nobits
|
|
.type tbss,%object
|
|
.size tbss,1
|
|
tbss:
|
|
.zero 1
|