使用 LC3 模拟器计算二进制数中 1 的数量

问题描述 投票:0回答:1

我正在尝试为 LC3 模拟器编写一个程序,它允许我计算存储在内存中其他位置的二进制数中 1 的数量。这是我到目前为止所拥有的:

0011 0001 0000 0000   ; Start the data at memory location x3100
0110 1010 1111 0001   ; Hex number stored at x3000

0011 0000 0000 0000   ; Start the program at x3000
0101 001 001 1 00000  ; Clear R1 (Contain address of number)
0101 010 010 1 00000  ; Clear R2 (Counter for amount of 1's)
0001 011 011 1 00001  ; Load R3 with 1 (Number for 'and-ing' with number getting checked)
;^cant do this line since that is a decimal 1 not binary one therefore it wouldnt left shift
; and cant store and get a binary number in memory

0001 100 100 1 01111  ; Load R4 with 16 (Loop loops til 0)
1110 001 011111100    ; Load R1 with address of number
0110 101 001 000000   ; Load R5 with the number stored at x3100
0101 110 101 000 011  ; And R3 with R5 store result in R6
                      ; If number is not zero, increment R2 by 1
0001 011 011 000 011  ; Add R3 with itself to make a left shift
0001 100 100 1 11111  ; Decrement R4 by 1
                      ; Loop to x3006 (When R3 is 'And-ed' with R5) if R4 isnt 0
0011 010 011111101    ; Store value from R2 in x3101
1111 0000 00100101    ; Halt (Is this correct?) set breakpoint here

我对如何制作“if 语句”来检查某些值以及如何在不满足条件时循环回到某个点感到困惑。我关于如何实际计算 1 数量的思考过程是,如果结果值不是 0,则用“0000000000000001”检查原始二进制数,然后将 1 添加到我的“1 计数器”,然后将 1 值左移到检查原始数字中的下一个值。我注意到我无法执行某一行,因为我相信我在寄存器 3 中存储了十进制 1 而不是二进制 1,并且无法将其左移。我的限制之一是我不能使用 x3100 和 x3101 之外的内存中的任何其他位置来分别存储原始数字和 1 的数量。

我听说位掩码非常有用,但我到处搜索却找不到如何使用它。任何帮助将不胜感激,谢谢!

assembly binary bitmask lc3 hammingweight
1个回答
0
投票

这是我的代码,计算 R6 中存储的 1,默认情况下我用 x7562 填充。使用分支和标签来处理子程序。 ##

.ORIG x3000 ;start point

;R6 is the the register of number stored
;R1 is the register for manipulation of the number stored
;R2 is the counter for number of 1s
;R3 is the bitmask
;R4 is the loopcounter
;R5 is the storage for AND operation

AND R1,R1,#0; Clean R1
AND R2,R2,#0; Clean R2
AND R3,R3,#0; Clean R3
AND R4,R4,#0; Clean R4
AND R5,R5,#0; Clean R5

ADD R3,R3,#1; Set the value of R3 to 1
ADD R4,R4,#15; Set the loop counter to 15

LD  R6,FILL_R6
ADD R1,R6,#0;

CHECK  AND  R5,R3,R1;
       BRz  #1;
       ADD  R2,R2,#1;
       ADD  R3,R3,R3; Left shift bitmask
       ADD  R4,R4,#-1
       BRzp CHECK

STI R2,STORE_x5000

FILL_R6     .FILL X756
STORE_x5000 .FILL x5000

.END
© www.soinside.com 2019 - 2024. All rights reserved.