8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright (C) 2000 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.6 2000/10/17 08:37:23 peterg
## Included logic rep
##
## Revision 1.5 2000/10/14 09:12:14 peterg
## No dies arguments and output itself
##
## Revision 1.4 2000/10/14 06:49:31 peterg
|
>
>
>
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright (C) 2000 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.7 2000/10/17 09:53:20 peterg
## Fixed logic rep
##
## Revision 1.6 2000/10/17 08:37:23 peterg
## Included logic rep
##
## Revision 1.5 2000/10/14 09:12:14 peterg
## No dies arguments and output itself
##
## Revision 1.4 2000/10/14 06:49:31 peterg
|
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
states=yes;
inputs=yes;
parameters=yes;
output=mtty
args=$eqnargs
;;
input)
states=no;
inputs=no;
parameters=no;
output=mttu
args=$inputeqnargs
;;
logic)
states=no;
inputs=no;
parameters=yes;
|
|
|
|
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
states=yes;
inputs=yes;
parameters=yes;
output=mtty
args=$eqnargs
;;
input)
states=yes;
inputs=no;
parameters=yes;
output=mttu
args=$inputeqnargs
;;
logic)
states=no;
inputs=no;
parameters=yes;
|
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
Lc='##';
Rc='';
Lb='(';
Rb=')';
function=""
declaration=""
start=''
parameters='no'
;;
*)
echo Language $language not supported - sorry; exit 1
esac
# Header information
|
|
>
>
|
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
|
Lc='##';
Rc='';
Lb='(';
Rb=')';
function=""
declaration=""
start=''
parameters=no
states=no
inputs=no
;;
*)
echo Language $language not supported - sorry; exit 1
esac
# Header information
|