From d2edbc38cac8da52f58c5cd3da6c0c625fa05736 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Sat, 6 Feb 2021 19:56:36 +0100 Subject: conf: rename --- Year_1/Computer_Architecture/num_of_1s.asm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Year_1/Computer_Architecture/num_of_1s.asm (limited to 'Year_1/Computer_Architecture/num_of_1s.asm') diff --git a/Year_1/Computer_Architecture/num_of_1s.asm b/Year_1/Computer_Architecture/num_of_1s.asm new file mode 100644 index 0000000..ffbd4f4 --- /dev/null +++ b/Year_1/Computer_Architecture/num_of_1s.asm @@ -0,0 +1,20 @@ +num dcd 27 ; 0b11011 + + mov r0, #num + ldr r0, [r0] + mov r2, r0 + + mov r1, #32 + +loop + and r4, r2, #1 + cmp r4, #1 + bne itszero + add r3, r3, #1 +itszero + lsr r2, r2, #1 + sub r1, r1, #1 + cmp r1, #0 + bne loop + + end -- cgit v1.2.3-18-g5258