.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