-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
531 changed files
with
36,764 additions
and
1 deletion.
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 |
---|---|---|
@@ -1 +1,10 @@ | ||
# cromix-s100computers | ||
# cromix-s100computers | ||
Cromix Plus ported to the s100computers.com 68030 board | ||
|
||
* The [docs](docs) folder contains the system configuration and boot instructions. Please read and follow all the documents in the specified order | ||
|
||
* The [manuals](manuals) folder contains some relevant Cromix Plus manuals. These manuals have been supplied by Marcus Bennett. Additional manuals and software are available from Marcus' cromemecos repository, details on accessing the repository are here [cromemcos](manuals) | ||
|
||
* The [file-system](file-system) folder contains the files extracted from the root Cromix file system. | ||
|
||
The 68030 Boot monitor and required CF Card image can be obtained from the latest [release](https://github.com/dwildie/cromix-s100computers/releases). |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
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.
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.
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.
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.
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.
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.
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.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
System shutdown in 5 seconds | ||
|
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,2 @@ | ||
% Delete all .bak files in the current directory | ||
del -v **.bak |
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,34 @@ | ||
if #1x = x goto how_to | ||
if #1 != '-l' goto not_link | ||
shift | ||
|
||
%lloop | ||
if #1x = x goto linkit | ||
c +c #1 | ||
if -err goto error | ||
jcode #1.i | ||
if -err goto error | ||
shift | ||
goto lloop | ||
%linkit | ||
rew | ||
shift | ||
jlinker +m +a +s -m#1.map #* -lsys -lc | ||
exit | ||
|
||
%not_link | ||
%loop | ||
if #1x = x exit | ||
c +c #1 | ||
if -err goto error | ||
jcode #1.i | ||
shift | ||
goto loop | ||
|
||
%error | ||
echo "Error(s) in compilation" | ||
exit 1 | ||
|
||
%how_to | ||
echo "Usage: CC [-l] <file> [<file ...]" | ||
echo |
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,10 @@ | ||
% Check file structures | ||
% | ||
if '#1' = '-s' goto salvage | ||
dcheck #1 | ||
icheck #1 | ||
exit | ||
%salvage | ||
dcheck -s #2 | ||
icheck -s #2 | ||
boot |
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,12 @@ | ||
%This command file rebuilds the super block on a Cromix disk | ||
%call by: fixsb devname | ||
|
||
if '#1' = '' go howto | ||
makfs -r #1 | ||
icheck -s #1 | ||
boot | ||
exit | ||
|
||
%howto | ||
echo Call by: fixsb devname | ||
exit 1 |
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 @@ | ||
help -d /usr/help/syslib #* |
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,10 @@ | ||
% Set or get current run level | ||
% | ||
if x#1 = x goto get | ||
echo #1 > /etc/level | ||
kill -1 1 | ||
exit | ||
%get | ||
echo -n "Current run level: " | ||
ty /etc/level | ||
exit |
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,31 @@ | ||
% This procedure is used to install CDOS programs on a Cromix disk | ||
if '#1' = '' goto argerror | ||
if #1 = fda goto install | ||
if #1 = fdb goto install | ||
if #1 = fdc goto install | ||
if #1 = fdd goto install | ||
if #1 = sfda goto install | ||
if #1 = sfdb goto install | ||
if #1 = sfdc goto install | ||
if #1 = sfdd goto install | ||
%argerror | ||
echo -e Wrong number of arguments | ||
echo -e 'Syntax: install fdx where fdx = fda, fdb, ..., sfda, sfdb, ...' | ||
exit | ||
%install | ||
del install2.cmd >* /dev/null | ||
cdoscopy #1 install.crx | ||
if -r install.crx goto continue1 | ||
%noinstall | ||
echo -e install.crx file not present on CDOS disk | ||
exit | ||
%continue1 | ||
ren install.crx install2.cmd | ||
if -e /usr/pkg goto continue2 | ||
%createpkg | ||
makd /usr/pkg | ||
chowner bin /usr/pkg | ||
%continue2 | ||
install2 #1 | ||
del install2.cmd | ||
echo CDOS software from disk #1 now installed on this Cromix disk |
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,2 @@ | ||
% Simulate old l program | ||
ls -m #* |
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,8 @@ | ||
% Ecc management | ||
% | ||
if "#1" = "" goto report | ||
ecc on | ||
ecc -t #1 >> /etc/msu_errs & | ||
exit | ||
%report | ||
ty /etc/msu_errs |
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 @@ | ||
ty /cmd/newuser.msg |
Oops, something went wrong.