-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmos329.s65
39 lines (31 loc) · 1.19 KB
/
mos329.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
38
39
.include "src/hardware.s65"
.include "src/mos_workspace.s65"
.include "src/terminal_workspace.s65"
; Maybe this should have its own version number? But I put "350" in
; the code so many times that it'd be a pain to sort it out.
version=350
finmos329=true
versionString="MOS 3.29"
*=$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