DOS source code < 1MB and Downloadable

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
taripo
Posts: 228
Joined: 01 Aug 2011 13:48

DOS source code < 1MB and Downloadable

#1 Post by taripo » 07 Aug 2015 02:30

http://www.computerhistory.org/atchm/mi ... urce-code/

"
the Computer History Museum is pleased to make available the source and object code to Microsoft’s MS-DOS operating system versions 1.1 and 2.0, for non-commercial use.

The zip file contains four subdirectories:

v11source: 7 assembler code files, and an explanatory email from Tim Paterson
v11object: 27 files, some binary programs and some sample programs
v20source: 118 text files, mostly assembler code and some documentation
v20object: 38 files, some binary and some documentation
To access this material, you must agree to the terms of the license displayed here, which permits only non-commercial use and does not give you the right to license it to third parties by posting copies elsewhere on the web.

Download Microsoft DOS V1.1 and V2.0 Source Code"

Voilla

http://www.computerhistory.org/atchm/mi ... v1-1-v2-0/

It has some TXT files as well

so it used $1 rather than %1 for batch parameters, and forward slash for paths

utility.txt

Code: Select all

  IF $1x == x ECHO Need at least one parameter


Code: Select all

IF not exist /tmp/foo ECHO Can't find file /tmp/foo

Aacini
Expert
Posts: 1914
Joined: 06 Dec 2011 22:15
Location: México City, México
Contact:

Re: DOS source code < 1MB and Downloadable

#2 Post by Aacini » 07 Aug 2015 06:35


Post Reply