-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmmap.inc
More file actions
44 lines (39 loc) · 1.25 KB
/
mmap.inc
File metadata and controls
44 lines (39 loc) · 1.25 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
# *******************************************************************************************
#
# Default Banks: 10,11,4,5,0,1
# Free Banks: 3
#
#
# +------------------------------------------------+
# | Kernel+IRQ 2=$E000 |
# +------------------------------------------------+
# | Spare 3 |
# +------------------------------------------------+
# | MainCode 4,5=$8000 |
# +------------------------------------------------+
# | GamePlay 6,7=$0000 |
# +------------------------------------------------+
# | FrontEnd 8,9=$0000 |
# +------------------------------------------------+
# | Screen Pages 10+11 |
# +------------------------------------------------+
#
#
# *******************************************************************************************
SECTION PAGE_02_KERNEL_CODE
org 0xE000
SECTION KERNEL_CODE
SECTION PAGE_02_KERNEL_IRQ
org 0xFCFC
SECTION KERNEL_IRQ
SECTION PAGE_02_KERNEL_END
org 0xFFFF
SECTION KERNEL_END
# 6+7
SECTION PAGE_06_GAMEPLAY_SEG
org 0x0000
SECTION GAMEPLAY_SEG
# 8+9
SECTION PAGE_08_FRONTEND_SEG
org 0x0000
SECTION FRONTEND_SEG