-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzp.6502
52 lines (41 loc) · 782 Bytes
/
zp.6502
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
\***************************************************************************
\
\ zp.6502 - Zero Page Allocations
\
\ Copyright (C) Charles Reilly 2023
\
\ This file is licensed under the GNU General Public License version 3
\
\***************************************************************************
\ Zero page allocations
ORG &70
\ ====================================
\ math.6502
\ 32-bit accumulator
.acc
EQUD 0
.other
EQUD 0
.scratch
EQUD 0
\ ====================================
\ hmac.6502
.key_length
EQUB 0
\ ====================================
\ hash.6502
\ Input values, unmodified
.hash_data
EQUW 0
.hash_length
EQUW 0
\ Pointer to next block to hash
.hash_next
EQUW 0
\ Length of remaining data
.hash_remaining
EQUW 0
.reg_index
EQUB 0
.ptr
EQUW 0