-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSTACK.ASM
53 lines (28 loc) · 1.01 KB
/
STACK.ASM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
$Title ('DTC/PC BIOS Stack V1.0')
$Pagelength (80) Pagewidth (132) Debug Nogen
Name Stack
; Author: Don K. Harrison
; Start date: October 25, 1983 Last edit: October 30, 1983
; ************************
; * Module Description *
; ************************
; This module contains the stack segment.
; (c) Display Telecommunications Corporation, 1983
; All Rights Reserved
$Eject
; **********************
; * Revision History *
; **********************
$Eject
; ********************
; * Public Symbols *
; ********************
Public StackTop
; *******************
; * Stack Segment *
; *******************
BiosStack Segment Public
Dw 128 Dup (?) ;128 Level Temporary Stack
StackTop Label Word
BiosStack Ends
End