Add conclusion and rename _main to start
This commit is contained in:
parent
44a453a062
commit
ced273944b
|
|
@ -1,5 +1,6 @@
|
|||
.global _main
|
||||
.global start
|
||||
|
||||
_main:
|
||||
mov x0, 42 // exit code
|
||||
ret
|
||||
start:
|
||||
mov x0, 1
|
||||
add x0, x0, 41
|
||||
b conclusion
|
||||
|
|
|
|||
Loading…
Reference in New Issue