Files
china-dictatorship/hello-world/a/Assembler MIPS.asm
Ciro Santilli 3e40ac19d9 hello-world
2021-03-24 00:00:01 +00:00

10 lines
317 B
NASM

.data
hw: .asciiz "Hello, World!"
.text
main:
la $a0, hw #load the address of hw into $a0
li $v0, 4 #load 4 into $v0
syscall #perform the print_string syscall
li $v0, 10 #load 10 into $v0
syscall #perform the exit syscall