mirror of
https://github.com/mgcaret/rom4x.git
synced 2024-12-21 11:29:55 +00:00
Add script to zip built images
This commit is contained in:
parent
1f20c1cfca
commit
cda85678ee
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,5 +2,6 @@
|
|||||||
*.lbl
|
*.lbl
|
||||||
*.bin
|
*.bin
|
||||||
*.swp
|
*.swp
|
||||||
|
*.zip
|
||||||
copyrom.sh
|
copyrom.sh
|
||||||
|
|
||||||
|
9
dist.sh
Executable file
9
dist.sh
Executable 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}"
|
||||||
|
|
@ -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.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user