mirror of https://github.com/wwarthen/RomWBW.git
Browse Source
- Put CP/M 3 and ZPM3 built system files into Binary directory to make them easier to access for manual upgrades. - Improve upgrade documentation.pull/132/head
27 changed files with 386 additions and 50 deletions
@ -0,0 +1,11 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
if exist *.spr del *.spr |
|||
if exist *.com del *.com |
|||
if exist *.sys del *.sys |
|||
if exist *.pat del *.pat |
|||
if exist *.dat del *.dat |
|||
if exist *.1st del *.1st |
|||
if exist *.spr del *.spr |
|||
if exist *.pat del *.pat |
|||
@ -0,0 +1,7 @@ |
|||
TOOLS = ../../Tools |
|||
MOREDIFF := $(shell $(TOOLS)/unix/casefn.sh *.spr) |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
|
|||
clobber:: |
|||
@rm -f *.spr |
|||
@ -0,0 +1,17 @@ |
|||
*********************************************************************** |
|||
*** *** |
|||
*** R o m W B W *** |
|||
*** *** |
|||
*** Z80/Z180 System Software *** |
|||
*** *** |
|||
*********************************************************************** |
|||
|
|||
This directory contains the CP/M 3 system files for the RomWBW CP/M 3 |
|||
adaptation. All of these files are already included on the CP/M 3 |
|||
boot disk images. However if you are creating a CP/M 3 boot disk |
|||
manually, you should copy all of these files to the boot disk. |
|||
|
|||
These files should also be copied to any CP/M 3 boot disks on your |
|||
system when you upgrade your ROM firmware. Some of these files |
|||
*must* match the version of the RomWBW firmware you are using for |
|||
proper operation of your system. |
|||
@ -1,8 +1,8 @@ |
|||
TOOLS = ../Tools |
|||
MOREDIFF := $(shell $(TOOLS)/unix/casefn.sh *.img *.rom *.com *.eeprom) |
|||
SUBDIRS = Apps |
|||
SUBDIRS = Apps CPM3 ZPM3 |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
|
|||
clobber:: |
|||
rm -f *.bin *.com *.img *.rom *.pdf *.log *.eeprom |
|||
@rm -f *.bin *.com *.img *.rom *.pdf *.log *.eeprom |
|||
|
|||
@ -0,0 +1,10 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
if exist *.spr del *.spr |
|||
if exist *.com del *.com |
|||
if exist *.sys del *.sys |
|||
if exist *.pat del *.pat |
|||
if exist *.dat del *.dat |
|||
if exist *.zpm del *.zpm |
|||
if exist *.spr del *.spr |
|||
@ -0,0 +1,7 @@ |
|||
TOOLS = ../../Tools |
|||
MOREDIFF := $(shell $(TOOLS)/unix/casefn.sh *.spr) |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
|
|||
clobber:: |
|||
@rm -f *.spr |
|||
@ -0,0 +1,17 @@ |
|||
*********************************************************************** |
|||
*** *** |
|||
*** R o m W B W *** |
|||
*** *** |
|||
*** Z80/Z180 System Software *** |
|||
*** *** |
|||
*********************************************************************** |
|||
|
|||
This directory contains the ZPM3 system files for the RomWBW ZPM3 |
|||
adaptation. All of these files are already included on the ZPM3 |
|||
boot disk images. However if you are creating a CP/M 3 boot disk |
|||
manually, you should copy all of these files to the boot disk. |
|||
|
|||
These files should also be copied to any ZPM3 boot disks on your |
|||
system when you upgrade your ROM firmware. Some of these files |
|||
*must* match the version of the RomWBW firmware you are using for |
|||
proper operation of your system. |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue