MS-DOS/v2.0/source/UINIT.ASM

30 lines
896 B
NASM
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

TITLE COMMAND Initialization messages
INCLUDE COMSW.ASM
INCLUDE IFEQU.ASM
INIT SEGMENT PUBLIC BYTE
PUBLIC BADCOMLKMES
PUBLIC HEADER
IF NOT IBM
HEADER DB 13,10,"Command v. 2.11"
IF HIGHMEM
DB "H"
ENDIF
DB 13,10,"$"
ENDIF
IF IBM
HEADER DB 13,10,13,10,"TeleVideo Personal Computer DOS Vers. 2.11",13,10
DB "(C) Copyright TeleVideo Systems, Inc. 1983",13,10
DB "(C) Copyright Microsoft Corp. 1981, 1982, 1983",13,10,"$"
ENDIF
BADCOMLKMES DB "Specified COMMAND search directory bad",13,10,"$"
INIT ENDS
END