我正在 LC3 机器上编写一个汇编程序。
我的汇编程序是一个 LC3 程序,它将 R2 和 R3 相乘并将结果存储在 R1 中。
这是我的源代码(带注释)
;Sets pc to this address at start of program
.ORIG x3000
;R1 will store the result lets clear it(ANd with 0)
AND R1,R1,x0
;R2 will be multiplied by R3, let's clear both of them
AND R2,R2,x0
AND R3,R3,x0
;Test case 4 * 3 = 12;
ADD R2,R2,4
ADD R3,R3,3
;Add to increment zone
LOOP Add R1,R1,R2;
;Decrement the counter, in this case the 3 or R3
ADD R3,R3,x-1
BrP LOOP
HALT
.END
我的测试用例乘以 4 * 3。结果应该是 12,应该存储在 R1 中。然而,当我在我的 LC3 模拟器中运行这个程序时,这就是我得到的输出
R3 最后保持正确的值,但 R1 保持 -1.... 有人看到我的代码有问题吗?我确保在开始时清除 R1,并继续将 R3 添加到 R1 并将结果存储到 R1,而在这种情况下,计数器 R3 或 3 大于零。