uvm32/apps/hello-asm/hello-asm.s
2025-12-07 10:45:11 +00:00

9 lines
148 B
ArmAsm

.section .initial_jump , "ax", %progbits
.global _start
_start:
la a5, str
csrrw zero,0x13b,a5 # println
csrwi 0x138,0 # halt
str:
.ascii "Hi"