update
This commit is contained in:
BIN
q2/fonctio/tp2/MIPS_Green_Sheet.pdf
Normal file
BIN
q2/fonctio/tp2/MIPS_Green_Sheet.pdf
Normal file
Binary file not shown.
BIN
q2/fonctio/tp2/fonct-ordis-tp2-spim.pdf
Normal file
BIN
q2/fonctio/tp2/fonct-ordis-tp2-spim.pdf
Normal file
Binary file not shown.
32
q2/fonctio/tp2/spim-add-int.s
Normal file
32
q2/fonctio/tp2/spim-add-int.s
Normal 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
|
12
q2/fonctio/tp2/spim-loop-5-write.s
Normal file
12
q2/fonctio/tp2/spim-loop-5-write.s
Normal file
@ -0,0 +1,12 @@
|
||||
main:
|
||||
li $a0, 5
|
||||
li $a1, 0
|
||||
li $v0, 1
|
||||
j loop
|
||||
|
||||
loop:
|
||||
syscall
|
||||
addiu $a0, -1
|
||||
bne $a0, $a1, loop
|
||||
# bgtz $a0, loop
|
||||
jr $ra
|
10
q2/fonctio/tp2/spim-loop-5.s
Normal file
10
q2/fonctio/tp2/spim-loop-5.s
Normal file
@ -0,0 +1,10 @@
|
||||
main:
|
||||
li $a0, 5
|
||||
li $a1, 0
|
||||
j loop
|
||||
|
||||
loop:
|
||||
addiu $a0, -1
|
||||
bne $a0, $a1, loop
|
||||
# bgtz $a0, loop
|
||||
jr $ra
|
3
q2/fonctio/tp2/spim-loop.s
Normal file
3
q2/fonctio/tp2/spim-loop.s
Normal file
@ -0,0 +1,3 @@
|
||||
main:
|
||||
nop
|
||||
j main
|
9
q2/fonctio/tp2/spim-print-str.s
Normal file
9
q2/fonctio/tp2/spim-print-str.s
Normal 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
|
33
q2/fonctio/tp2/spim-read-int.s
Normal file
33
q2/fonctio/tp2/spim-read-int.s
Normal file
@ -0,0 +1,33 @@
|
||||
.data
|
||||
question: .asciiz "Entrez un nombre: "
|
||||
gr: .asciiz "Trop Grand!\n"
|
||||
pe: .asciiz "Valeur acceptee\n"
|
||||
|
||||
.text
|
||||
main:
|
||||
la $a0, question
|
||||
li $v0, 4
|
||||
syscall
|
||||
|
||||
li $v0, 5
|
||||
syscall
|
||||
|
||||
bgt $v0, 10, grand
|
||||
bgt $v0, 0, petit
|
||||
jr $ra
|
||||
|
||||
grand:
|
||||
la $a0, gr
|
||||
li $v0, 4
|
||||
syscall
|
||||
j main
|
||||
|
||||
petit:
|
||||
la $a0, pe
|
||||
li $v0, 4
|
||||
syscall
|
||||
|
||||
lr $a0,
|
||||
li $v0, 4
|
||||
syscall
|
||||
j main
|
27
q2/fonctio/tp2/spim-to-binary.s
Normal file
27
q2/fonctio/tp2/spim-to-binary.s
Normal file
@ -0,0 +1,27 @@
|
||||
.data
|
||||
ask: .ascii "Entrez un nombre:"
|
||||
|
||||
.text
|
||||
main:
|
||||
|
||||
# Print(ask)
|
||||
li $v0 4
|
||||
la $a0 ask
|
||||
syscall
|
||||
|
||||
# read()
|
||||
li $v0 5
|
||||
syscall
|
||||
|
||||
li $t0 2 #base
|
||||
|
||||
divi:
|
||||
|
||||
div $v0, $t0
|
||||
li $v0, 1
|
||||
mfhi $a0
|
||||
syscall
|
||||
mflo $v0
|
||||
bne $v0, 0, divi
|
||||
|
||||
jr $ra
|
29
q2/fonctio/tp2/switch-table.s
Normal file
29
q2/fonctio/tp2/switch-table.s
Normal file
@ -0,0 +1,29 @@
|
||||
.data
|
||||
tab: .word case5, case6, case7, case8
|
||||
q1: .asciiz "Entrez un nombre entre 5 et 8:"
|
||||
|
||||
.text
|
||||
main:
|
||||
li $v0, 5
|
||||
la $a0, q1
|
||||
syscall
|
||||
|
||||
li $v0, 4
|
||||
syscall
|
||||
|
||||
|
||||
case5:
|
||||
|
||||
j end_case
|
||||
case6:
|
||||
|
||||
j end_case
|
||||
case7:
|
||||
|
||||
j end_case
|
||||
case8:
|
||||
|
||||
j end_case
|
||||
|
||||
end_case:
|
||||
jr $ra
|
Reference in New Issue
Block a user