Files
osc2025/userprog/Start.S
2025-04-08 07:01:24 +08:00

12 lines
114 B
ArmAsm

.section ".text"
.global _start
_start:
mov x0, 0
loop:
add x0, x0, 1
svc 0
cmp x0, 5
blt loop
wait:
b wait