Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 424 Bytes

globtype.inc

File metadata and controls

17 lines (14 loc) · 424 Bytes
 
Nov 18, 2000
Nov 18, 2000
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ Global Declarations }
{ 8086/8088 hardware flags }
const
carry_flag = 1;
parity_flag = 4;
aux_carry_flag = 16;
zero_flag = 64;
sign_flag = 128;
type
anystr = string[255]; (* Matches any string for parameter passing *)
shortstr = string[30]; (* Short string *)
keystr = string[65]; (* Function key string *)
filestr = string[65]; (* File name string *)
text_file = text;