-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbcs.inc
More file actions
75 lines (71 loc) · 1.63 KB
/
bcs.inc
File metadata and controls
75 lines (71 loc) · 1.63 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
c include file BCS
c
c_begin_doc
c RCS ID string
c $Id: bcs.inc,v 1.1 2000/05/18 23:07:48 lcsmith Exp $
c
c Documentation for include file BCS
c
c Purpose: Standard common for BOS banks
c --------
c
c Used in routines: all
c ----------------
c
c Notes:
c ------
c
c Author: Dieter Cords Created: Mon Jun 12 17:50:51 EDT 1995
c -------
c
c Major revisions:
c JAM - changed the parameter to 700,000
c ----------------
c
c_end_doc
c
c
c Remember NO NESTED INCLUDES
c
c COMMON BLOCK NAME should be the same as include file name!
c
c_begin_var
c variables for include file BCS:
c -----------------------------------
c RCS information:
CHARACTER*(132) CIBCS
DATA CIBCS/
1'$Id: bcs.inc,v 1.1 2000/05/18 23:07:48 lcsmith Exp $'
2/
c----6----------------------------------------------------------------72
c
c Variables contained in BCS common block
c --------------------------------------------
c
c_end_var
c
INTEGER Nbcs
PARAMETER (Nbcs = 700000)
c
INTEGER IW(Nbcs), JUNK(5)
REAL RW(Nbcs)
INTEGER*2 IW16(2*Nbcs)
BYTE IW08(4*Nbcs)
EQUIVALENCE (IW(1),RW(1),IW08(1),IW16(1))
c
c IWCOL and IWROW provide a quick way to find the number of columns
c and rows for a particular bank
c
c
COMMON/BCS/JUNK,IW
INTEGER IWROW(Nbcs), IWCOL(Nbcs), IWNAME(Nbcs), IWNR(Nbcs),
1 IWNXT(Nbcs)
EQUIVALENCE (IW(1), IWCOL(6))
EQUIVALENCE (IW(1), IWROW(5))
EQUIVALENCE (IW(1), IWNAME(4))
EQUIVALENCE (IW(1), IWNR(3))
EQUIVALENCE (IW(1), IWNXT(2))
c
c
save /BCS/
c----6----------------------------------------------------------------72