mirror of https://github.com/wwarthen/RomWBW.git
Browse Source
- Complete the reorganization of the test apps by implementing Makefile changes.pull/254/head
66 changed files with 144 additions and 76 deletions
@ -0,0 +1,4 @@ |
|||||
|
@echo off |
||||
|
setlocal |
||||
|
|
||||
|
if exist *.com del *.com |
||||
@ -0,0 +1,7 @@ |
|||||
|
TOOLS = ../../../Tools |
||||
|
MOREDIFF := $(shell $(TOOLS)/unix/casefn.sh *.com) |
||||
|
|
||||
|
include $(TOOLS)/Makefile.inc |
||||
|
|
||||
|
clobber:: |
||||
|
@rm -f *.com |
||||
@ -0,0 +1,16 @@ |
|||||
|
*********************************************************************** |
||||
|
*** *** |
||||
|
*** R o m W B W *** |
||||
|
*** *** |
||||
|
*** Z80/Z180 System Software *** |
||||
|
*** *** |
||||
|
*********************************************************************** |
||||
|
|
||||
|
This directory contains various hardware test application files that |
||||
|
are specific to RomWBW. The source for these applications is found |
||||
|
in the Source\Apps\Test directory of the distribution. |
||||
|
|
||||
|
These files are included on the pre-built disk images in user area 2. |
||||
|
|
||||
|
N.B., these files may be specific to certain hardware. They should |
||||
|
be used as directred by the instructions for your specific hardware. |
||||
@ -0,0 +1,7 @@ |
|||||
|
OBJECTS = dmamon.com |
||||
|
DEST = ../../../../Binary/Apps/Test |
||||
|
TOOLS =../../../../Tools |
||||
|
|
||||
|
USETASM=1 |
||||
|
|
||||
|
include $(TOOLS)/Makefile.inc |
||||
@ -1,6 +1,6 @@ |
|||||
OBJECTS = i2cscan.com rtcds7.com i2clcd.com |
OBJECTS = i2cscan.com rtcds7.com i2clcd.com |
||||
DEST = ../../../Binary/Apps |
|
||||
TOOLS = ../../../Tools |
|
||||
|
DEST = ../../../../Binary/Apps/Test/ |
||||
|
TOOLS = ../../../../Tools |
||||
|
|
||||
USETASM=1 |
USETASM=1 |
||||
TASMFLAGS=-dWBW |
TASMFLAGS=-dWBW |
||||
@ -0,0 +1,6 @@ |
|||||
|
OBJECTS = |
||||
|
SUBDIRS = DMAMon I2C inttest ppidetst ramtest tstdskng |
||||
|
DEST = ../../../Binary/Apps/Test |
||||
|
TOOLS =../../../Tools |
||||
|
|
||||
|
include $(TOOLS)/Makefile.inc |
||||
@ -0,0 +1,7 @@ |
|||||
|
OBJECTS = inttest.com |
||||
|
DEST = ../../../../Binary/Apps/Test |
||||
|
TOOLS =../../../../Tools |
||||
|
|
||||
|
USETASM=1 |
||||
|
|
||||
|
include $(TOOLS)/Makefile.inc |
||||
@ -0,0 +1,7 @@ |
|||||
|
OBJECTS = ppidetst.com |
||||
|
DEST = ../../../../Binary/Apps/Test |
||||
|
TOOLS =../../../../Tools |
||||
|
|
||||
|
USETASM=1 |
||||
|
|
||||
|
include $(TOOLS)/Makefile.inc |
||||
@ -1,7 +1,7 @@ |
|||||
OBJECTS = ramtest.com |
OBJECTS = ramtest.com |
||||
DEST = ../../../Binary/Apps |
|
||||
DOCDEST = ../../../Doc |
|
||||
TOOLS = ../../../Tools |
|
||||
|
DEST = ../../../../Binary/Apps/Test |
||||
|
DOCDEST = ../../../../Doc |
||||
|
TOOLS = ../../../../Tools |
||||
OTHERS = loader.bin dbgmon.bin |
OTHERS = loader.bin dbgmon.bin |
||||
include $(TOOLS)/Makefile.inc |
include $(TOOLS)/Makefile.inc |
||||
|
|
||||
@ -0,0 +1,7 @@ |
|||||
|
OBJECTS = tstdskng.com |
||||
|
DEST = ../../../../Binary/Apps/Test |
||||
|
TOOLS =../../../../Tools |
||||
|
|
||||
|
USETASM=1 |
||||
|
|
||||
|
include $(TOOLS)/Makefile.inc |
||||
Loading…
Reference in new issue