mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-02-05 21:34:30 +00:00
hgr: wires: add basicbot version
This commit is contained in:
parent
05953557ed
commit
e5818412f3
@ -18,7 +18,7 @@ appleiibot.dsk: E2.BAS FLAME.BAS FLAME2.BAS HELLO \
|
||||
XOR_ZOOM.BAS MOD9_HGR.BAS SIER_HGR.BAS MOVE.BAS SINE.BAS XDRAW128.BAS \
|
||||
GATOR.BAS CURSOR.BAS STARGATE.BAS TUNNEL.BAS STARFIELD.BAS \
|
||||
STAROOPS.BAS HGRSTARFIELD.BAS COOL_BOT.BAS WEB.BAS ORB.BAS \
|
||||
FIREWORKS.BAS THINKING.BAS ARCS.BAS
|
||||
FIREWORKS.BAS THINKING.BAS ARCS.BAS WIRE_HGR.BAS
|
||||
|
||||
# cp $(EMPTY_DISK)/empty.dsk appleiibot.dsk
|
||||
cp empty.dsk appleiibot.dsk
|
||||
@ -96,6 +96,7 @@ appleiibot.dsk: E2.BAS FLAME.BAS FLAME2.BAS HELLO \
|
||||
$(DOS33) -y appleiibot.dsk SAVE A FIREWORKS.BAS
|
||||
$(DOS33) -y appleiibot.dsk SAVE A THINKING.BAS
|
||||
$(DOS33) -y appleiibot.dsk SAVE A ARCS.BAS
|
||||
$(DOS33) -y appleiibot.dsk SAVE A WIRE_HGR.BAS
|
||||
|
||||
####
|
||||
|
||||
@ -474,6 +475,11 @@ DROPS.BAS: drops.bas
|
||||
|
||||
####
|
||||
|
||||
WIRE_HGR.BAS: wire_hgr.bas
|
||||
$(TOKENIZE) < wire_hgr.bas > WIRE_HGR.BAS
|
||||
|
||||
####
|
||||
|
||||
RR.BAS: rr.bas
|
||||
$(TOKENIZE) < rr.bas > RR.BAS
|
||||
|
||||
|
2
basic/appleiibot/wire_hgr.bas
Normal file
2
basic/appleiibot/wire_hgr.bas
Normal file
@ -0,0 +1,2 @@
|
||||
1FORI=0TO+93:POKE922+I,4*PEEK(2125+I)-204+(PEEK(2219+I/3)-35)/4^(I-INT(I/3)*3):NEXT
|
||||
2&"/foW2]/\T;]CM;be2W8dbg2W<eg%i<YCd4emQ8M)35IBl;e5\S_*33M:l2j<]1l;]Ka<gjmk4oa[^heohcghS[]S\aeDY3S53)@B5A%]4F5M4*(ILMK*0%&S88MNE&
|
12
linker_scripts/apple2_39a.inc
Normal file
12
linker_scripts/apple2_39a.inc
Normal file
@ -0,0 +1,12 @@
|
||||
MEMORY {
|
||||
ZP: start = $00, size = $1A, type = rw;
|
||||
RAM: start = $39a, size = $8E00, file = %O;
|
||||
}
|
||||
|
||||
SEGMENTS {
|
||||
CODE: load = RAM, type = ro;
|
||||
RODATA: load = RAM, type = ro;
|
||||
DATA: load = RAM, type = rw;
|
||||
BSS: load = RAM, type = bss, define = yes;
|
||||
ZEROPAGE: load = ZP, type = zp;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user