-
Notifications
You must be signed in to change notification settings - Fork 1
/
pg7fx.a80
51 lines (39 loc) · 1 KB
/
pg7fx.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
device zxspectrum128
org #C000
define isFX 7
@_fxpage = #17
@_fxpage_start
VRAM2 ds 6912
;;-----------------------------------------------------------------------------
org #10000 - blk.len
@blk
incbin "finalpart/finalwords.nfo"
fx_finalpart: incbin "finalpart/final.pak"
.pg = _fxpage
.sync = 7586
fx_oneplus: incbin "oneplus/final.pak"
.pg = _fxpage
.sync = 1417
fx_ripple: incbin "ripple/final.pak"
.pg = _fxpage
.sync = 0
@blk.len = $-blk
;;-----------------------------------------------------------------------------
if $ > #10000
display "Too long! ",/D,($-#10000)," bytes out!"
end
else
display /D,(#10000-$)," bytes free..."
endif
align 16384,0
savebin "needle7",(_fxpage_start),$-(_fxpage_start)
;;-----------------------------------------------------------------------------
export fx_finalpart
export fx_finalpart.pg
export fx_finalpart.sync
export fx_oneplus
export fx_oneplus.pg
export fx_oneplus.sync
export fx_ripple
export fx_ripple.pg
export fx_ripple.sync