-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstage3.txt
More file actions
57 lines (45 loc) · 1.24 KB
/
stage3.txt
File metadata and controls
57 lines (45 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
https://powcoder.com
代写代考加微信 powcoder
Assignment Project Exam Help
Add WeChat powcoder
https://powcoder.com
代写代考加微信 powcoder
Assignment Project Exam Help
Add WeChat powcoder
@ stage 3
.section .text
.align 2
.global _start
_start:
mov r4, #12 @ r4 stores the next value that is multiple of 3
mov r2, #10 @ r2 is the counter and initialized with 10
loop:
tst r2, #7 @ if(r2 & 0b111 == 0) then r2 is multiple of 8
bne cont @ not multiple of 8
cmp r2, r4
beq both8And3 @ both multiple of 8 and 3
ldr r3, =0xffff
b callOutput
both8And3:
add r4, r4, #3 @ set r4 to next multiple of 3
ldr r3, =0xffbb @ set to 0xffbb when multiple of 8 and 3
b callOutput
# not multiple of 8
cont:
cmp r2, r4
beq mult3 @ multiple of 3
mov r3, r2 @ set to counter when not multiple of 8 and not multiple of 3
b callOutput
mult3:
add r4, r4, #3 @ set r4 to next multiple of 3
ldr r3, =0xbbbb @ set to 0xbbbb when multiple of 3
b callOutput
callOutput:
bl output @ call output
add r2, r2, #1 @ increase counter by 1
cmp r2, #50
ble loop @ continue loop when counter <= 50
end:
b end @ infinite loop
output:
bx lr @ just return