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,32 @@
.data
txt1: .asciiz "Entrez un premier nombre:"
txt2: .asciiz "Entrez un second nombre:"
.text
main:
# print txt1
la $a0, txt1
li $v0, 4
syscall
#read t0
li $v0, 5
syscall
move $t0, $v0
# print txt2
li $v0, 4
la $a0, txt2
syscall
#read t1
li $v0, 5
syscall
move $t1, $v0
# a0 = t0 + t1
add $a0, $t1, $t0
li $v0, 1
syscall
jr $ra