Use CR-LF endings everywhere

This commit is contained in:
Juhani Krekelä 2021-08-26 06:24:05 +03:00
parent 29e167c340
commit 86c9baa87b
4 changed files with 63 additions and 63 deletions

48
LICENSE
View File

@ -1,24 +1,24 @@
MS-DOS v1.25 and v2.0 Source Code
Copyright (c) Microsoft Corporation.
All rights reserved.
MIT License.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the Software),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT,TORT OR OTHERWISE, ARISING FROM
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
MS-DOS v1.25 and v2.0 Source Code
Copyright (c) Microsoft Corporation.
All rights reserved.
MIT License.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the Software),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT,TORT OR OTHERWISE, ARISING FROM
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

50
README
View File

@ -1,25 +1,25 @@
Ordos
=====
Ordos aims to be a buildable operating system based on MS-DOS 1.25.
File origins & License
----------------------
Here 'ms-dos' refers to the Microsoft repository, while 'ordos' refers to
new files for Ordos. Everything is under the MIT license.
build.bat ordos
clean.bat ordos
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
msdos.asm ms-dos v1.25/source/MSDOS.ASM
stddos.asm ms-dos v1.25/source/STDDOS.ASM
Notes
-----
MASM requires CR-LF line endings, while the Microsoft source code appers to
have LF.
Ordos
=====
Ordos aims to be a buildable operating system based on MS-DOS 1.25.
File origins & License
----------------------
Here 'ms-dos' refers to the Microsoft repository, while 'ordos' refers to
new files for Ordos. Everything is under the MIT license.
build.bat ordos
clean.bat ordos
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
msdos.asm ms-dos v1.25/source/MSDOS.ASM
stddos.asm ms-dos v1.25/source/STDDOS.ASM
Notes
-----
MASM requires CR-LF line endings, while the Microsoft source code appers to
have LF.

View File

@ -1,7 +1,7 @@
masm command;
link command;
exe2bin command.exe command.com
masm stddos;
link stddos;
exe2bin stddos.exe ordos.sys
masm command;
link command;
exe2bin command.exe command.com
masm stddos;
link stddos;
exe2bin stddos.exe ordos.sys

View File

@ -1,7 +1,7 @@
del command.obj
del command.exe
del command.com
del stddos.obj
del stddos.exe
del ordos.sys
del command.obj
del command.exe
del command.com
del stddos.obj
del stddos.exe
del ordos.sys