mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-05 22:43:39 +00:00
9 lines
148 B
ArmAsm
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"
|
|
|