Add script to zip built images

This commit is contained in:
mgcaret 2017-01-29 15:54:00 -08:00
parent 1f20c1cfca
commit cda85678ee
3 changed files with 27 additions and 1 deletions

1
.gitignore vendored
View File

@ -2,5 +2,6 @@
*.lbl
*.bin
*.swp
*.zip
copyrom.sh

9
dist.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
# Script to zip the built images
rm -f "romXx_dist-*.zip"
ROM4X="rom4x/iic_rom4x.bin"
ROM5X="rom5x/iic+_rom5x.bin"
FNAME="romXx_dist-`date --rfc-3339=date`.zip"
[ -f "${ROM4X}" ] && zip "${FNAME}" "${ROM4X}"
[ -f "${ROM5X}" ] && zip "${FNAME}" "${ROM5X}"

View File

@ -1,2 +1,18 @@
# DO NOT EVEN TRY THIS YET :-)
# ROM 5X by MG
## DO NOT EVEN TRY THIS YET :-)
**Warning:** This has not been tested on an emulator or a real Apple IIc Plus.
This is a patch for the Apple IIc Plus firmware that tries to recover a battery-backed
RAM disk upon cold start. Because of the limited space in the Apple IIc ROM. it does not
have the complete feature set of ROM 4X for the (non-Plus) //c.
Upon cold start, the patch checks for a potentially bootable RAM disk and restores the
appropriate screen holes to prevent it from being destroyed and to enable boot. If a
RAMdisk is recovered, a flashing "R" will appear in the lower left corner of the screen.
To prevent the check and recovery, power on the machine with the Option key held down.
A flashing "O" will appear in the lower left corner of the screen and the system will
boot without checking for or recovering any RAM disk.