This commit is contained in:
Debucquoy Anthony 2023-05-08 09:32:14 +02:00
parent d0ef521917
commit 00d0cdfaf3
Signed by: tonitch
GPG Key ID: A78D6421F083D42E

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