?? stack2.inc
字號:
;***
; STACK.INC - 18-Feb-88 - Stack size definitions
;***
.XLIST
;***
;
; Copyright <C> 1987, Microsoft Corporation
;
;Purpose:
; Stack constants
;
; WARNING: This file is shared between the runtime and interpreter.
; WARNING: The runtime is the official "owner", and all changes should
; WARNING: be made there first, and then propogated to the interpreter.
;
;
;******************************************************************************
STACK2_INC = -1 ; remember file has been included
FAT_COW = 300h ; Extra slop just in case
STACK_SIZE = 0800h + FAT_COW ; Default stack size (MUST BE EVEN)
STACK_MIN = 0320h + FAT_COW ; Minimum stack size
STACK_CHECK = STACK_MIN-20h+1h ; Stack check marker offset (MUST BE ODD)
; This constant is used by runtime to ensure
; we never make long-term stack commitments
; (i.e. GOSUB, CALL, FUNCTION invocations)
; that would result in less than this many
; free bytes between SP and b$pend.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -