-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-Authored-By: Douglas Miller <16920069+durgadas311@users.noreply.github.com>
- Loading branch information
1 parent
e18014a
commit 3f102e0
Showing
44 changed files
with
270 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@echo off | ||
setlocal | ||
|
||
if exist *.lbr del *.lbr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
TOOLS = ../../Tools | ||
MOREDIFF := $(shell $(TOOLS)/unix/casefn.sh *.lbr) | ||
|
||
include $(TOOLS)/Makefile.inc | ||
|
||
clean:: | ||
@rm -f *.lbr |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
*********************************************************************** | ||
*** *** | ||
*** R o m W B W *** | ||
*** *** | ||
*** Z80/Z180 System Software *** | ||
*** *** | ||
*********************************************************************** | ||
|
||
This directory contains the CP/NET client packages. Please refer to | ||
the RomWBW User Guide for instructions on installing these packages. | ||
Either the MT011 RCBus module or the Duodyne Disk I/O board is required. | ||
|
||
All of these files come from Douglas Miller. Please refer to | ||
https://github.com/durgadas311/cpnet-z80 for more information, complete | ||
documentation and the latest source code. Refer to the RomWBW | ||
User Guide for basic installation and usage instructions under RomWBW. | ||
|
||
| File | CP/NET Version | OS | Hardware | | ||
+--------------+----------------+----------+-----------------------+ | ||
| CPN12MT.LBR | CP/NET 1.2 | CP/M 2.2 | RCBus w/ MT011 | | ||
| CPN3MT.LBR | CP/NET 3 | CP/M 3 | RCBus w/ MT011 | | ||
| CPN12DUO.LBR | CP/NET 1.2 | CP/M 2.2 | Duodyne w/ Disk I/O | | ||
| CPN3DUO.LBR | CP/NET 3 | CP/M 3 | Duodyne w/ Disk I/O | | ||
|
||
In general, to use CP/NET on RomWBW, it is intended that you will | ||
extract the appropriate set of files into your default directory in | ||
user area 0. Refer to the RomWBW User Guide for more information. | ||
|
||
The libraries include enhanced help files appropriate for the version | ||
of CP/NET. Rename the desired topic collection to HELP.HLP on the | ||
target system. | ||
|
||
CPM2NET.HLP CP/M 2.2 basic system with CP/NET 1.2 | ||
CPNET12.HLP CP/NET 1.2 help only | ||
CPM3NET.HLP CP/M 3 basic system with CP/NET 3 | ||
CPNET3.HLP CP/NET 3 help only | ||
|
||
-- WBW 7:14 AM 2/11/2024 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
RomWBW ReadMe | ||
Wayne Warthen (wwarthen@gmail.com) | ||
10 Feb 2024 | ||
11 Feb 2024 | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
@echo off | ||
setlocal | ||
|
||
set TOOLS=%~dp0..\..\Tools | ||
|
||
set PATH=%TOOLS%\zxcc;%PATH% | ||
set CPMDIR80=%TOOLS%\cpm\ | ||
|
||
pushd duo\cpnet12 | ||
zxcc nulu --O -cpn12duo "-<30" --A -*.* --L --X || exit /b | ||
move cpn12duo.lbr ..\.. || exit /b | ||
popd | ||
|
||
pushd duo\cpnet3 | ||
zxcc nulu --O -cpn3duo "-<30" --A -*.* --L --X || exit /b | ||
move cpn3duo.lbr ..\.. || exit /b | ||
popd | ||
|
||
pushd mt011\cpnet12 | ||
zxcc nulu --O -cpn12mt "-<30" --A -*.* --L --X || exit /b | ||
move cpn12mt.lbr ..\.. || exit /b | ||
popd | ||
|
||
pushd mt011\cpnet3 | ||
zxcc nulu --O -cpn3mt "-<30" --A -*.* --L --X || exit /b | ||
move cpn3mt.lbr ..\.. || exit /b | ||
popd | ||
|
||
copy *.lbr ..\..\Binary\CPNET |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@echo off | ||
setlocal | ||
|
||
if exist *.lbr del *.lbr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
OBJECTS = cpn12mt.lbr cpn3mt.lbr cpn12duo.lbr cpn3duo.lbr | ||
DEST = ../../Binary/CPNET/ | ||
TOOLS = ../../Tools | ||
|
||
include $(TOOLS)/Makefile.inc | ||
|
||
ZXCC=$(TREEROOT)/Tools/$(UNAME)/zxcc | ||
export CPMDIR80=$(TREEROOT)/Tools/cpm/ | ||
|
||
cpn12%.lbr: CPNETVER=cpnet12 | ||
cpn3%.lbr: CPNETVER=cpnet3 | ||
%mt.lbr: HWVER=mt011 | ||
%duo.lbr: HWVER=duo | ||
|
||
%.lbr: | ||
cd $(HWVER)/$(CPNETVER) | ||
$(ZXCC) nulu --O -$(*F) -\<30 --A -*.* --L --X | ||
mv $@ ../.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
*********************************************************************** | ||
*** *** | ||
*** R o m W B W *** | ||
*** *** | ||
*** Z80/Z180 System Software *** | ||
*** *** | ||
*********************************************************************** | ||
|
||
This directory contains the CP/M client components for CP/NET. These | ||
components require either the MT011 RCBus module or the Duodyne | ||
Disk I/O board. | ||
|
||
All of these files come from Douglas Miller. Please refer to | ||
https://github.com/durgadas311/cpnet-z80 for more information and | ||
the latest source code. | ||
|
||
The build process packages the client files into .lbr packages | ||
appropriate for the hardware variations and CP/NET versions. | ||
|
||
-- WBW 7:15 AM 2/11/2024 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.