-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue.asm
65 lines (56 loc) · 1.78 KB
/
queue.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
; 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/>.
QUEUE_HEAD equ 0x30
QUEUE_TAIL equ 0x31
QUEUE_BEGIN equ 0x32
QUEUE_END equ 0x64
; void ()
; Initialize Queue
queue_init:
; Init Head and Tail
MOV QUEUE_HEAD, #QUEUE_BEGIN
MOV QUEUE_TAIL, #QUEUE_BEGIN + 0x01
MOV R0, #QUEUE_BEGIN ; Get address of the first element
q_init_elements:
MOV @R0, #0xFF ; Initialize element with zero
; Increase R0
INC R0 ; Increase element pointer
CJNE R0, #QUEUE_END + 0x01, q_init_elements ; Loop through all elements
RET
; void (A)
queue_push:
PUSH ACC ; Push the new element value
MOV A, QUEUE_HEAD
INC ACC
CJNE A, #QUEUE_END + 0x01, q_do_it ; Check queue bounds
MOV A, #QUEUE_BEGIN ; Set next element
q_do_it:
MOV R0, A ; R0 is the pointer to the new element
POP ACC ; Pop the element value
MOV @R0, A ; Write the element value
MOV QUEUE_HEAD, R0 ; Set the head
RET
; A ()
queue_pop:
MOV R0, QUEUE_TAIL
MOV A, @R0
MOV @R0, #0xFF ; Clear the element
MOV R0, A
MOV A, QUEUE_TAIL
INC ACC
CJNE A, #QUEUE_END + 0x01, q_do_it_2 ; Check queue bounds
MOV A, #QUEUE_BEGIN ; Set next element
q_do_it_2:
MOV QUEUE_TAIL, A ; Set the tail
MOV A, R0 ; Set return value
RET