Add command.com

This commit is contained in:
Juhani Krekelä 2021-08-25 00:03:36 +03:00
parent 55914559b9
commit 2d3dcc0d7e
5 changed files with 2185 additions and 3 deletions

17
README
View File

@ -2,12 +2,23 @@ Ordos
=====
Ordos aims to be a buildable operating system based on MS-DOS 1.25.
File origins
------------
File origins & License
----------------------
Here 'ms-dos' refers to the Microsoft repository.
Here 'ms-dos' refers to the Microsoft repository, while 'tools' refers to
tools created for Ordos. Microsoft source code is under the MIT license,
while Ordos tools are CC0.
build.bat tools
clean.bat tools
command.asm ms-dos v1.25/source/COMMAND.ASM
debug.com ms-dos v1.25/bin/DEBUG.COM
edlin.com ms-dos v1.25/bin/EDLIN.COM
exe2bin.exe ms-dos v1.25/bin/EXE2BIN.EXE
link.exe ms-dos v1.25/bin/LINK.EXE
masm.exe ms-dos v2.0/bin/MASM.EXE
Notes
-----
MASM requires CR-LF line endings, while the Microsoft source code appers to
have LF.

3
build.bat Normal file
View File

@ -0,0 +1,3 @@
masm command;
link command;
exe2bin command.exe command.com

3
clean.bat Normal file
View File

@ -0,0 +1,3 @@
del command.obj
del command.exe
del command.com

2165
command.asm Normal file

File diff suppressed because it is too large Load Diff

BIN
exe2bin.exe Normal file

Binary file not shown.