From 86c9baa87b1ccf3787286737e6dc2195b2b0db57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Thu, 26 Aug 2021 06:24:05 +0300 Subject: [PATCH] Use CR-LF endings everywhere --- LICENSE | 48 ++++++++++++++++++++++++------------------------ README | 50 +++++++++++++++++++++++++------------------------- build.bat | 14 +++++++------- clean.bat | 14 +++++++------- 4 files changed, 63 insertions(+), 63 deletions(-) diff --git a/LICENSE b/LICENSE index 15d0b66..a1f440a 100644 --- a/LICENSE +++ b/LICENSE @@ -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. diff --git a/README b/README index bebe21e..39ae781 100644 --- a/README +++ b/README @@ -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. diff --git a/build.bat b/build.bat index 1bbedfc..2f0c335 100644 --- a/build.bat +++ b/build.bat @@ -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 diff --git a/clean.bat b/clean.bat index 7b9404c..76b5641 100644 --- a/clean.bat +++ b/clean.bat @@ -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