-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVectors.agc
56 lines (42 loc) · 923 Bytes
/
Vectors.agc
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
# We begin with an interrupt vector table. There are 10 possible interrupts,
# plus the restart vector which comes first.
RESUME # T6RUPT
NOOP
NOOP
NOOP
RESUME # T5RUPT
NOOP
NOOP
NOOP
DXCH ARUPT # T3RUPT
EXTEND # Back up A, L, and Q
QXCH QRUPT
TCF T3RUPT # Transfer to the T3RUPT handler
RESUME # T4RUPT
NOOP
NOOP
NOOP
DXCH ARUPT # KEYRUPT1, fired whenever a key is pressed
EXTEND
QXCH QRUPT
TCF KEYRUPT1
RESUME # KEYRUPT2
NOOP
NOOP
NOOP
RESUME # UPRUPT
NOOP
NOOP
NOOP
RESUME # DOWNRUPT
NOOP
NOOP
NOOP
RESUME # RADAR RUPT
NOOP
NOOP
NOOP
RESUME # RUPT10
NOOP
NOOP
NOOP