添加两个数字字符串 - MIPS ASSEMBLY
我正在开发 MIPS 组装程序。我对此很陌生,并且遇到了一些麻烦。
如何将 .asciiz 字符串中的数字转换为数字计数器部分。
前任: “1”-> 49
I am working on a MIPS Assembly program. I am new at this, and am having some trouble.
How do you convert digits in a .asciiz string to there numeric counter parts.
EX:
"1" -> 49
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您使用像 http://sourceforge.net/projects/spimsimulator/ 这样的模拟器:
输出:
49505152
Assuming you use a simulator like http://sourceforge.net/projects/spimsimulator/:
Output:
49505152