注册 登录
编程论坛 汇编论坛

Mars--mips如何输入16进制数

yycyyc2 发布于 2021-05-12 20:58, 7683 次点击
如题
Mars--mips如何输入16进制数

急求哭出来了
1 回复
#2
Valenciax2021-05-13 05:54
不懂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) 存入 内存中       
1