Updating to match naming convention for RISC-V

This commit is contained in:
Diana
2023-02-09 23:42:53 -05:00
committed by GitHub
parent aeb09c6ced
commit 3a4f82ecfa

10
a/Assembler RISC-V.s Normal file
View File

@@ -0,0 +1,10 @@
.data
hello_world: .asciiz "Hello World"
.text
main: la a1, hello_world
li a0, 4
ecall
li a0, 10
ecall