-
Notifications
You must be signed in to change notification settings - Fork 1
/
pg6fx.a80
37 lines (28 loc) · 894 Bytes
/
pg6fx.a80
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
device zxspectrum128
org #C000
define isFX 6
@_fxpage = #16
@_fxpage_start
;;-----------------------------------------------------------------------------
include "music/pt3extra.a80"
incbin "music/final.pt3",99
MUSIC.page = _fxpage
MUSIC.init = music_init
MUSIC.play = music_play
;;-----------------------------------------------------------------------------
include "finalpart/finalpart.data.inc"
org finalwords
incbin "finalpart/finalpart.data.pak"
;;-----------------------------------------------------------------------------
if $ > #10000
display "Too long! ",/D,($-#10000)," bytes out!"
end
else
display /D,(#10000-$)," bytes free..."
endif
align 16384,0
savebin "needle6",(_fxpage_start),$-(_fxpage_start)
;;-----------------------------------------------------------------------------
export MUSIC.page
export MUSIC.init
export MUSIC.play