You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
244 B

.data
_Prompt: .asciiz "Enter an integer: "
_ret: .asciiz "\n"
.globl main
.text
read:
li $v0,4
la $a0,_Prompt
syscall
li $v0,5
syscall
jr $ra
write:
li $v0,1
syscall
li $v0,4
la $a0,_ret
syscall
move $v0,$0
jr $ra