2025-04-27 07:49:33 -04:00

23 lines
656 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.

;/*
; * Microsoft Confidential
; * Copyright (C) Microsoft Corporation 1991
; * All Rights Reserved.
; */
; SCCSID = @(#)envdata.asm 1.1 85/05/14
; SCCSID = @(#)envdata.asm 1.1 85/05/14
; This file is included by command.asm and is used as the default command
; environment.
Environment Struc ; Default COMMAND environment
Env_PathString db "path="
db 0 ; Null path
Env_Comstring db "comspec="
Env_Ecomspec db "\command.com" ;AC062
db 134 dup (0)
Environment ends
ENVIRONSIZ equ SIZE Environment
ENVIRONSIZ2 equ SIZE Environment - Env_Ecomspec