Files
osc2025/userprog/Start.S
2025-03-24 10:48:35 +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