This commit is contained in:
Toby Jaffey 2025-12-08 02:45:38 +00:00
parent 751f068486
commit 7bf906f369
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,12 @@
#include "uvm32_sys.h"
#include "uvm32_common_custom.h"
.section .initial_jump , "ax", %progbits
.global _start
_start:
la a0, str
li a7, IOREQ_PRINTLN
ecall
li a7, IOREQ_HALT
ecall
str:
.ascii "Hi\0"