summaryrefslogtreecommitdiff
path: root/Year_1/Computer_Architecture/multiply.asm
diff options
context:
space:
mode:
Diffstat (limited to 'Year_1/Computer_Architecture/multiply.asm')
-rw-r--r--Year_1/Computer_Architecture/multiply.asm21
1 files changed, 21 insertions, 0 deletions
diff --git a/Year_1/Computer_Architecture/multiply.asm b/Year_1/Computer_Architecture/multiply.asm
new file mode 100644
index 0000000..1635a6d
--- /dev/null
+++ b/Year_1/Computer_Architecture/multiply.asm
@@ -0,0 +1,21 @@
+op_1 dcd 4
+op_2 dcd 10
+
+ mov r0, #op_1
+ ldr r1, [r0]
+
+ mov r0, #op_2
+ ldr r2, [r0]
+
+ mov r0, #0
+
+loop
+ cmp r2, #0
+ beq loop_end
+
+ add r0, r0, r1
+ sub r2, r2, #1
+ b loop
+
+loop_end
+ end