Rivoreo Source Code Repositories
src.rivoreo.one
/
devel
/
hello-world
/
e7aedb5b453a8069cf8cc517d7d1f0f4ca662d33
/
.
/
hello-riscv-linux.s
blob: 77198f3cd59cc9ddfbd2f964b0780950e20ffad5 [
file
] [
log
] [
blame
] [
raw
]
.section .rodata
helloworld
:
.string
"Hello world\n"
.section .text
.global _start
_start
:
li a2
,
12
lla a1
,
helloworld
li a0
,
1
li a7
,
64
ecall
li a0
,
0
li a7
,
93
ecall