Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试存储一个初始化为的指针:
int* x;
进入一个初始化为的常规变量
int y;
因此:
y = *x;
在 mips 中是否像
$s1 = ($a0);?
反之亦然?
汇编语言通常没有运算符。您可能需要以下lw说明:
lw
lw $s1, 0($a0)
$s1和的使用$a0当然取决于上下文。如果这些寄存器与您正在使用的其余代码匹配,那就没问题了。
$s1
$a0