tlc-apple2/build/Makefile
David Schmidt 6c327f4283
Add prototype code to bigbang at the joystick port (#2)
* Add PB0 bitbanger and build process

Signed-off-by: David Schmidt <1110325+david-schmidt@users.noreply.github.com>

* Update target labels

Signed-off-by: David Schmidt <1110325+david-schmidt@users.noreply.github.com>

* Tune for 7-bit ASCII coming from a host

Signed-off-by: David Schmidt <1110325+david-schmidt@users.noreply.github.com>

* Update docs for bitbang joystick cable

Signed-off-by: David Schmidt <1110325+david-schmidt@users.noreply.github.com>

---------

Signed-off-by: David Schmidt <1110325+david-schmidt@users.noreply.github.com>
2023-09-26 00:47:49 -04:00

19 lines
451 B
Makefile

AC_JAR ?= lib/AppleCommander/AppleCommander-1.3.5.13-ac.jar
.PHONY:
all:
ca65 ../src/tapeout.asm --listing tapeout.lst
ld65 ../src/tapeout.o -o tapeout.bin -C area_300.cfg
ca65 ../src/bitbangr.asm --listing bitbangr.lst
ld65 ../src/bitbangr.o -o bitbangr.bin -C area_300.cfg
@cp tlcBase.dsk tlc.dsk
cat bitbangr.bin | java -jar ${AC_JAR} -p tlc.dsk BITB BIN 0x0300
.PHONY:
clean:
-rm ../src/*.o
-rm *.lst
-rm bitbangr.bin
-rm tapeout.bin