Snarf SSC ROM from mirror for patching.

This commit is contained in:
Christopher RYU 2023-03-11 06:46:08 +09:00
parent d5f54183a6
commit da10651ff2
2 changed files with 15 additions and 4 deletions

View File

@ -1,5 +1,16 @@
all: adtpro-patch-341-0065-B.bin
# Simple makefile to snarf the Apple SuperSerialCard ROM image and patch it
# for ADTPro bootstrapping
adtpro-patch-341-0065-B.bin: adtpro-patch-341-0065-B.xdelta
xdelta3 -d -s 341-0065-B.bin adtpro-patch-341-0065-B.xdelta \
adtpro-patch-341-0065-B.bin
ROM_SOURCE = https://mirrors.apple2.org.za/Apple%20II%20Documentation%20Project/Interface%20Cards/Serial/Apple%20II%20Super%20Serial%20Card/ROM%20Images/Apple%20II%20Super%20Serial%20Card%20ROM%20-%20341-0065-A.bin
all: 341-0065.bin adtpro-patch-341-0065.bin
adtpro-patch-341-0065.bin: adtpro-patch-341-0065.xdelta
xdelta3 -d -s 341-0065.bin adtpro-patch-341-0065.xdelta \
adtpro-patch-341-0065.bin
341-0065.bin:
curl -o 341-0065.bin $(ROM_SOURCE)
clean:
rm -f 341-0065.bin adtpro-patch-341-0065.bin