FreeCalypso > hg > ueda-linux
comparison ueda/libueda/mcl.h @ 0:cd92449fdb51
initial import of ueda and ifctf-part-lib from ifctfvax CVS
| author | Space Falcon <falcon@ivan.Harhan.ORG> |
|---|---|
| date | Mon, 20 Jul 2015 00:24:37 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:cd92449fdb51 |
|---|---|
| 1 /* Definitions for the data structures derived from the MCL */ | |
| 2 | |
| 3 struct attrib { | |
| 4 char *name; | |
| 5 char *value; | |
| 6 }; | |
| 7 | |
| 8 struct component { | |
| 9 char *name; /* refdes or partdef */ | |
| 10 struct attrib *attrs; | |
| 11 int nattrs; | |
| 12 struct component *partdef; | |
| 13 struct pinout_def *pinout; | |
| 14 struct component *nextinhash; | |
| 15 }; |
