MS-DOS v2.0 Release

This commit is contained in:
Rich Turner 1983-08-12 17:53:34 -07:00
commit 80ab2fddfd
156 changed files with 56403 additions and 0 deletions

17
v2.0/source/MOREMES.ASM Normal file
View file

@ -0,0 +1,17 @@
TITLE MORE Messages
CODE SEGMENT PUBLIC
PUBLIC MORETXT,BADVER,CRLFTXT,BUFFER
MORETXT DB 13,"-- More --$"
BADVER DB "MORE: Incorrect DOS version"
CRLFTXT DB 13,10,"$"
;
; THIS VARIABLE MUST BE DEFINED LAST!
;
BUFFER DB 4098 DUP (?)
CODE ENDS
END