MARIE 汇编器 - 如何乘法
我想编写一个简单的 MARIE 程序来计算表达式 A x B + C x D
。
现在,关于 Marie 汇编语言的信息并不多。 不知道有没有乘法?如果没有,我是否需要循环或其他东西才能使其倍增? 我知道对于某些运算符,例如 <
、>
您会进行减法。
这就是我到目前为止所拥有的:
100 load A
101 load B
102 add C // add to B? b+c?
103 mult A
我只是被困住了。
I want to write a simple M.A.R.I.E. program to evaluate the expression A x B + C x D
.
Now, there's not alot of info on Marie assembly language.
I am not sure if there is a multiply? If not, would I have to loop or something to get it to multiply?
I know for certain operators like <
, >
you would subtract.
This is what I have so far:
100 load A
101 load B
102 add C // add to B? b+c?
103 mult A
I'm just stuck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你指的是这个吗?
http://www.cse.yorku.ca/~jeff/notes/ compiler/Marie/
您可以在编辑器中访问操作码列表(文件>编辑)、帮助>帮助。
没有 mult 操作码,因此您必须创建一个循环并使用 skipcond 来测试条件。
Do I suppose you refer to this?
http://www.cse.yorku.ca/~jeff/notes/compiler/Marie/
You can access to a list of opcodes in the editor (File>>Edit), Help>>Help.
There is no mult opcode, so you'll have to create a loop and use skipcond in order to test the condition.