GitHub_collection_hello-world/a/Assembler MIPS.asm
2021-05-09 02:57:36 +12:00

10 lines
144 B
NASM

.data
hw: .asciiz "Hello World"
.text
main:
la $a0, hw
li $v0, 4
syscall
li $v0, 10
syscall