FreeCalypso > hg > ueda-linux
annotate ueda/libunet/unetrd.h @ 135:25634b3977a9
ueda: unet2tedax added
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 07 Sep 2020 01:22:36 +0000 |
parents | 33e4c4cdf493 |
children |
rev | line source |
---|---|
9 | 1 /* |
2 * Data structures for the unet reader | |
3 */ | |
4 | |
5 struct unetrd_state { | |
6 char *filename; | |
7 FILE *stream; | |
8 int lineno; | |
9 }; | |
10 | |
11 struct unetrd_out { | |
12 int typecode; | |
13 char *keyword; | |
14 char *objname; | |
15 char *connect_to_net; | |
16 char *nc_comment; | |
28
33e4c4cdf493
libunet: reading of ATTR lines implemented
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
9
diff
changeset
|
17 char *attr_value; |
9 | 18 }; |
19 | |
20 #define UNETOBJ_CLOSINGBRACE 0 | |
21 #define UNETOBJ_NET 1 | |
22 #define UNETOBJ_COMPONENT 2 | |
23 #define UNETOBJ_STARPOINT 3 | |
24 #define UNETOBJ_PRIMITIVE 4 | |
25 #define UNETOBJ_ALTNAME 5 | |
26 #define UNETOBJ_PIN 6 | |
27 #define UNETOBJ_PINMAP 7 | |
28
33e4c4cdf493
libunet: reading of ATTR lines implemented
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
9
diff
changeset
|
28 #define UNETOBJ_ATTR 8 |