aboutsummaryrefslogtreecommitdiff
path: root/pkg/tbtables/selector/trsopen.com
blob: 44d71a508b8a663499ef3f7aa2042e477d760e20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# TRSOPEN.COM -- Common block holding global variables for trsopen

pointer	tabptr		# table descriptor
pointer	tokbuf		# buffer to hold last tokens
pointer	errbuf		# token to hold error message
pointer	treebuf		# buffer to hold intermediate tree representation
pointer	pcode		# pseudocode structure
int	itop		# top of stack index
int	itok		# end of token index
int	ival		# next available location in value buffer
int	itree		# next available node in tree
int	stack[MAXSTACK]	# stack of pending file descriptors

common	/ trscom / tabptr, tokbuf, errbuf, treebuf, pcode, 
		   itop, itok, ival, itree, stack