-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWave_MasterMenu.s
More file actions
52 lines (41 loc) · 1.32 KB
/
Wave_MasterMenu.s
File metadata and controls
52 lines (41 loc) · 1.32 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
45
46
47
48
49
50
;Wave_MasterMenu.s
*=$A000
;0500-0FFF Disc Ops
;1000-76FF WAVE Flatfile
;7700-9FFF Compiled Music (less Samples)
;A000-B4FF Utility Code
;X - MenuID
DisplayMenu
lda TextMenuAddressLo,x
sta source
lda TextMenuAddressHi,x
sta source+1
; 0123456789012345678901234567890123456789
Text_WaveMasterMenu
.byt " Wave Menu "
.byt " 1 Music Editor "
.byt " 2 Compiler "
.byt " 3 Get Music Stats "
.byt 128
Text_KeyGuideInsert
.byt "SPACEBAR - Refresh Printer State "
.byt "Cursor Keys - Navigate "
.byt "RETURN - Select Option "
.byt "ESC - Quit to BASIC "
.byt 128
Text_WaveCompilerMenu
.byt "Prt:Offline Compiler Menu FN:DEFAULT"
.byt " 1 Load WAVE Music "
.byt " 2 Compile Music "
.byt " 3 Load Compiled Music "
.byt 128
Text_WaveCompiledMenu
.byt "Prt:Offline Compiled Menu FN:DEFAULT"
.byt " 1 Save Compiled Music "
.byt " 2 Save BASIC HIRES Player(Dyna) "
.byt " 3 Save BASIC HIRES Player(Perm) "
.byt " 4 Save BASIC Player for TEXT "
.byt " 4 Dump(XA) Compiled to Printer "
.byt " "
.byt "
.byt 128