mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-06 06:53:39 +00:00
12 lines
221 B
ArmAsm
12 lines
221 B
ArmAsm
#include "uvm32_sys.h"
|
|
#include "uvm32_common_custom.h"
|
|
.section .initial_jump , "ax", %progbits
|
|
.global _start
|
|
_start:
|
|
la a0, str
|
|
li a7, UVM32_SYSCALL_PRINTLN
|
|
ecall
|
|
li a7, UVM32_SYSCALL_HALT
|
|
ecall
|
|
str:
|
|
.ascii "Hi\0"
|