mirror of https://github.com/wwarthen/RomWBW.git
42 changed files with 696 additions and 156 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.
@ -0,0 +1,30 @@ |
|||
|
|||
#IFNDEF CFG_STATE |
|||
#DEFINE CFG_STATE |
|||
|
|||
SYSTIMEN .EQU FALSE |
|||
|
|||
#IF (CTCENABLE & (INTMODE == 2) & (CTCTIMER)) |
|||
SYSTIMEN .SET TRUE |
|||
#ENDIF |
|||
|
|||
#IF (TMSENABLE & (INTMODE == 1) & TMSTIMENABLE) |
|||
SYSTIMEN .SET TRUE |
|||
#ENDIF |
|||
|
|||
#IF ((INTMODE == 1) & (PLATFORM == PLT_SBC) & HTIMENABLE) |
|||
SYSTIMEN .SET TRUE |
|||
#ENDIF |
|||
|
|||
#IF ((INTMODE == 2) & (CPUFAM == CPU_Z180)) |
|||
SYSTIMEN .SET TRUE |
|||
#ENDIF |
|||
|
|||
.ECHO "TIMER INTERRUPT " |
|||
#IF SYSTIMEN |
|||
.ECHO "ACTIVE\n" |
|||
#ELSE |
|||
.ECHO "NOT ACTIVE\n" |
|||
#ENDIF |
|||
|
|||
#ENDIF |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue