Rename ioreq to syscall

This commit is contained in:
Toby Jaffey 2025-12-08 12:26:47 +00:00
parent b79a107a3d
commit 61fe0e8647
20 changed files with 187 additions and 190 deletions

View file

@ -4,9 +4,9 @@
.global _start
_start:
la a0, str
li a7, IOREQ_PRINTLN
li a7, UVM32_SYSCALL_PRINTLN
ecall
li a7, IOREQ_HALT
li a7, UVM32_SYSCALL_HALT
ecall
str:
.ascii "Hi\0"