我是 MIPS 的新手。我想问一下如何从用户那里获取 2 个数字,然后显示这些数字。我知道如何为 1 个号码执行此操作。
.data
promt: .asciiz "Enter one number: "
message: .asciiz "\nNumber1 is: "
.text
#Promt the user to enter number 1.
li $v0, 4
la $a0, promt
syscall
#Get the user's age
li $v0, 5
syscall
#Store the result in $t0
move $t0, $v0
#Display
li $v0, 4
la $a0, message
syscall
#Print or show the number
li $v0, 1
move $a0, $t0
syscall