brkctl.inc

来自「[随书类]Dos6.0源代码」· INC 代码 · 共 31 行

INC
31
字号
;***
;brkctl.inc - definitions and structure for brkctl
;
;	Copyright (c) 1987-1988, Microsoft Corporation.  All rights reserved.
;
;Purpose:
;	The file contains brkctl command values and structure
;	definitions.
;
;*******************************************************************************

BR_ARGSEG= 1			; specified segment
BR_NEWSEG= 2			; new segment
BR_IMPSEG= 3			; last or new segment

MAXSEG_DOS =	20		; maximum brkctl segments for REAL mode
MAXSEG_OS2 =	256		; maximum brkctl segments for PROTECTED mode

segrec	struc			; defines brkctl segment offsets
	sz	dw      ?
	sg	dw      ?
segrec	ends

heaprec	struc			; defines heap descriptor offsets
	bottom	dw      ?
	roveroff dw      ?
	last	dw      ?
	top	dw      ?
	nextseg	dw      ?
heaprec	ends

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?