This commit is contained in:
Debucquoy
2023-05-05 13:02:58 +02:00
parent 23a079c89a
commit cac30ebbb1
14 changed files with 253 additions and 0 deletions

View File

@ -0,0 +1,9 @@
.data
mystr: .asciiz "The answer to live, universe and everything else is.... 42"
.text
main:
la $a0, mystr
li $v0, 4
syscall
jr $ra