FreeCalypso > hg > ueda-linux
comparison ueda/sverp-bind/struct.h @ 8:640ba9db0e9d
ueda/sverp-bind/struct.h started
| author | Space Falcon <falcon@ivan.Harhan.ORG> |
|---|---|
| date | Sat, 01 Aug 2015 03:57:31 +0000 |
| parents | |
| children | 65a515c20db8 |
comparison
equal
deleted
inserted
replaced
| 7:0971b400f35a | 8:640ba9db0e9d |
|---|---|
| 1 /* | |
| 2 * Data structures for the MCL binding step | |
| 3 */ | |
| 4 | |
| 5 struct instance { | |
| 6 char *name; | |
| 7 struct instance *nextinhash; | |
| 8 struct outcomp *outcomp; | |
| 9 char *slot; | |
| 10 int claimed; | |
| 11 }; | |
| 12 | |
| 13 struct outcomp { | |
| 14 char *name; | |
| 15 char *altname; | |
| 16 struct component *mclcomp; | |
| 17 int npins; | |
| 18 struct grid_pkg_desc *grid_pkg; | |
| 19 struct pinconn **conn_array; | |
| 20 }; | |
| 21 | |
| 22 struct starpoint { | |
| 23 struct outcomp outcomp; | |
| 24 struct instance instance; | |
| 25 struct starpoint *next; | |
| 26 }; | |
| 27 | |
| 28 struct pinconn { | |
| 29 struct net *net; | |
| 30 char *nc_comment; | |
| 31 int input_lineno; | |
| 32 }; |
