Initial version of donated sources by Avertec, 3.4p5.
[tas-yagle.git] / distrib / sources / mbkvhdl / mvl_utype.h
1 /*
2 * This file is part of the Alliance CAD System
3 * Copyright (C) Laboratoire LIP6 - Département ASIM
4 * Universite Pierre et Marie Curie
5 *
6 * Home page : http://www-asim.lip6.fr/alliance/
7 * E-mail support : mailto:alliance-support@asim.lip6.fr
8 *
9 * This library is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Library General Public License as published
11 * by the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * Alliance VLSI CAD System is distributed in the hope that it will be
15 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
17 * Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with the GNU C Library; see the file COPYING. If not, write to the Free
21 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24
25 /* ###---------------------------------------------------------------### */
26 /* */
27 /* file : mvl_utype.h */
28 /* date : Aug 8 91 */
29 /* author : P.BAZARGAN L.A.TABUSSE VUONG H.N. */
30 /* */
31 /* content : declaration of external functions and global variables */
32 /* used by yacc */
33 /* */
34 /* ###---------------------------------------------------------------### */
35
36 struct dct_entry
37 {
38 struct dct_entry *next;
39 struct dct_recrd *data;
40 char *key;
41 };
42
43 struct dct_recrd
44 {
45 struct dct_recrd *next;
46 char *key;
47 short fd0_val;
48 short fd1_val;
49 short fd2_val;
50 short fd3_val;
51 short fd4_val;
52 short fd5_val;
53 short fd6_val;
54 long pnt_val;
55 };