This commit is contained in:
Debucquoy
2023-09-20 15:18:20 +02:00
parent 00d0cdfaf3
commit 4fd7542f03
228 changed files with 351 additions and 12 deletions

View File

@ -0,0 +1,20 @@
.data
text: .asciiz "Hello I'm in my fct"
.text
main:
# Appel Fonction
or $t0 $zero $ra
jal fct
or $ra $zero $t0
jr $ra
fct:
li $v0, 4
la $a0, text
syscall
jr $ra