MARIE 汇编器 - 如何乘法

发布于 2024-10-17 10:32:42 字数 341 浏览 2 评论 0原文

我想编写一个简单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥抱影子 2024-10-24 10:32:42

我想你指的是这个吗?

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文