IML TD:
[TD_IML.git] / TD3 / mips1.asm
1 .data
2 msg: .asciiz "ça fonctionne"
3 .text
4 la $a0, msg
5 li $v0, 4
6 syscall
7 li $v0, 10
8 syscall