cours_progra/bac1/q2/fonctio/tp2/spim-print-str.s
Debucquoy 4fd7542f03
.
2023-09-20 15:18:20 +02:00

10 lines
140 B
ArmAsm

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