不懂Mars--mips汇编,查了一下,大概可以用syscall
example:
.data
int_value:
.word
0
# declare storage for var1; initial value is 23
# 先声明一个 word 型的变量 初值 = 0;
.text
__start:
#读取一个数,并且存储到内存中的 int_value 变量中,hhm
li
$v0, 5
# load appropriate system call code into register $v0;
# code for reading integer is 5
声明需要调用的操作代码为 5 (read_int) 并赋值给 $v0
syscall
# call operating system to perform operation、
经过读取操作后, $v0 的值已经变成了 输入的 5
sw
$v0, int_value
# value read from keyboard returned in register $v0;
# store this in desired location
通过写入(store_word)指令 将 $v0的值(5) 存入 内存中