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

50
README
View File

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

View File

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

View File

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