-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.asm
70 lines (62 loc) · 1.57 KB
/
display.asm
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
; Copyright 2017 Julian Merkle
; This file is part of asm_Snake.
; asm_Snake is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation, either version 3 of the License, or
; (at your option) any later version.
; asm_Snake is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
; You should have received a copy of the GNU General Public License
; along with asm_Snake. If not, see <http://www.gnu.org/licenses/>.
TMP_VAR equ 0x21
; void ()
; Display all queue elements
display:
MOV R0, QUEUE_TAIL
CALL render
d_iterate:
; Get element addr after head
MOV R1, QUEUE_HEAD
INC R1
MOV A, R0
ADD A, #0x01
MOV TMP_VAR, R1
CJNE A, TMP_VAR, d_end_not_reached ; Check if reached head
RET ; END REACHED
d_end_not_reached:
CJNE A, #QUEUE_END + 0x01, d_in_bound ; Check queue bounds
MOV A, #QUEUE_BEGIN ; Set next element
d_in_bound:
MOV R0, A
CALL render
SJMP d_iterate
; void (R0)
; Renders Point R0
render:
MOV A, @R0 ; Get value
MOV R1, A
CALL get_axis_x
CALL get_axis_byte
MOV P0, #0x00 ; Disable Y Axis
MOV P1, R3 ; Set X axis
CALL get_axis_y
CALL get_axis_byte
MOV P0, R3 ; Set Y axis
RET
; R3 (R2)
; Decode 3 bit axis representation to full byte
get_axis_byte:
MOV R3, #00000001b
d_check:
MOV A, R2
JNZ d_not_zero
RET
d_not_zero:
; Left-shift R3
MOV A,R3
RL A
MOV R3, A
DEC R2
SJMP d_check