From da10651ff22cb13976fa100dd986088b9bce5218 Mon Sep 17 00:00:00 2001 From: Christopher RYU Date: Sat, 11 Mar 2023 06:46:08 +0900 Subject: [PATCH] Snarf SSC ROM from mirror for patching. --- rom/Makefile | 19 ++++++++++++++---- ...-B.xdelta => adtpro-patch-341-0065.xdelta} | Bin 2 files changed, 15 insertions(+), 4 deletions(-) rename rom/{adtpro-patch-341-0065-B.xdelta => adtpro-patch-341-0065.xdelta} (100%) diff --git a/rom/Makefile b/rom/Makefile index e462b80..de4501c 100644 --- a/rom/Makefile +++ b/rom/Makefile @@ -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 diff --git a/rom/adtpro-patch-341-0065-B.xdelta b/rom/adtpro-patch-341-0065.xdelta similarity index 100% rename from rom/adtpro-patch-341-0065-B.xdelta rename to rom/adtpro-patch-341-0065.xdelta