summaryrefslogtreecommitdiff
path: root/1_anno/Architettura_Elaboratori/lowest.asm
diff options
context:
space:
mode:
authorSanto Cariotti <dcariotti24@gmail.com>2020-10-18 18:56:43 +0200
committerSanto Cariotti <dcariotti24@gmail.com>2020-10-18 18:59:42 +0200
commit6c6328375c55683645146909b7ab760d0de0d463 (patch)
treeb18e695dfe7a10064fed111649253dc2c77208bf /1_anno/Architettura_Elaboratori/lowest.asm
parent4e063e32250312c38d5646840719b62429362b21 (diff)
chore: name of first year folder
Diffstat (limited to '1_anno/Architettura_Elaboratori/lowest.asm')
-rw-r--r--1_anno/Architettura_Elaboratori/lowest.asm31
1 files changed, 31 insertions, 0 deletions
diff --git a/1_anno/Architettura_Elaboratori/lowest.asm b/1_anno/Architettura_Elaboratori/lowest.asm
new file mode 100644
index 0000000..3dccb4a
--- /dev/null
+++ b/1_anno/Architettura_Elaboratori/lowest.asm
@@ -0,0 +1,31 @@
+array dcd 3, 6, 10, 55, -1, 120, 10, -2, 0, 0, 13
+arr_n dcd 12
+
+ mov r0, #arr_n
+ ldr r1, [r0] ; r1 = grandezza dell'array
+
+ mov r0, #array ; r0 = array[0]
+ ldr r3, [r0] ; r3 = numero maggiore
+
+loop
+ cmp r1, #0
+ beq loop_end
+
+ ldr r2, [r0]
+
+ cmp r2, r3
+ blt assign_lt
+
+ add r0, r0, #4
+
+loop_back
+ sub r1, r1, #1
+
+ b loop
+
+assign_lt
+ mov r3, r2
+ b loop_back
+
+loop_end
+ end