指定标签的内存地址
是否可以更改或修改 MIPS 中标签的地址? (我正在使用 MARS)
例如......
.data
x: .half 9
现在“x”将随机存储在内存中,但是如果我想将它存储在特定地址中怎么办?是否可以?
Is it possible to change or modify the address of a label in MIPS? (I am using MARS)
for example...
.data
x: .half 9
now that 'x' will be stored randomly in memory, but what if i wanted to store it in specific address? Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在
.data
之后指定地址,例如,如果您想将 x 存储在地址 0x2000 中,您应该编写
You have to specify the address after the
.data
For example, if you want to store x in the address 0x2000 you should write