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 に逆参照する方法を知りたいです。 これはコードです:
int load(int *ptr) { return *ptr; }
これで、$a0 にポインターが含まれていることがわかりました。これが整数のアドレスであり、これを返す必要があります。
MIPSでは、次のようにレジスタ$a0に含まれるポインタを逆参照します。
LW $v0, 0($a0) JR $ra