mirror of
https://github.com/david-schmidt/tlc-apple2.git
synced 2024-11-25 19:32:06 +00:00
6c327f4283
* 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>
19 lines
451 B
Makefile
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
|