-
Notifications
You must be signed in to change notification settings - Fork 0
/
mos350.s65
37 lines (29 loc) · 1.07 KB
/
mos350.s65
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
.include "src/hardware.s65"
.include "src/mos_workspace.s65"
.include "src/terminal_workspace.s65"
version=350
versionString="MOS 3.50"
defaultMODE=7
*=$af00
.dsection ext
.cwarn *>$b800,'Ext ROM is too large'
*=$8000
.dsection utils
.cwarn *>$c000,'Terminal ROM is too large'
*=$c000
.dsection mos
; there's no need for a size check here - 64tass gives
; you an error if the code would go past the 64 K
; barrier.
;-------------------------------------------------------------------------
.section ext
.include "src/sound_stuff.s65"
.fill 7,255
.include "src/ext.s65"
.endsection
.section utils
.include "src/terminal.s65"
.endsection
.section mos
.include "src/mos.s65"
.endsection