1
0

9 lines
79 B
NASM

.data
echar: .ascii "e"
.text
e:
li $v0, 4
la $a0, echar
syscall
j e