-
Notifications
You must be signed in to change notification settings - Fork 1
/
pg3fx.a80
35 lines (28 loc) · 850 Bytes
/
pg3fx.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
device zxspectrum128
org #C000
define isFX 3
@_fxpage = #13
@_fxpage_start
;;-----------------------------------------------------------------------------
fx_oneplusani: incbin "oneplus/oneplusani.pak"
.pg = _fxpage | #80 ; data transfer part
.length = $-fx_oneplusani
fx_reglogo: incbin "reglogo/final.pak"
.pg = _fxpage
.sync = 836
;;-----------------------------------------------------------------------------
if $ > #10000
display "Too long! ",/D,($-#10000)," bytes out!"
end
else
display /D,(#10000-$)," bytes free..."
endif
align 16384,0
savebin "needle3",(_fxpage_start),$-(_fxpage_start)
;;-----------------------------------------------------------------------------
export fx_oneplusani
export fx_oneplusani.pg
export fx_oneplusani.length
export fx_reglogo
export fx_reglogo.pg
export fx_reglogo.sync