|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T m ┃
Length: 817 (0x331) Types: TextFile Names: »main.c«
└─⟦87ddcff64⟧ Bits:30001253 CPHDIST85 Tape, 1985 Autumn Conference Copenhagen └─ ⟦this⟧ »cph85dist/wirewrap/main.c«
#include "wirewrap.h" main() { initialize(); readin(); /* Read the input file. */ #ifdef DEBUG printf("Dump of pin array after inputting data\n"); test(); #endif sort1(); /* Sort by signal name. */ #ifdef DEBUG printf("Dump of pin array after sort by signal name\n"); test(); #endif getwired(); /* Wire the pins togther. */ #ifdef DEBUG printf("Dump of pin array after doing the wiring.\n"); test(); #endif output1(); /* Output the first printout. (Chip side view) */ sort2(); /* Sort by (row,col). */ #ifdef DEBUG printf("Dump of pin array after sorting by (row,col)\n"); test(); #endif output2(); /* Output the second printout. (Pin side view) */ output3(); /* Output the third printout. (Wire lengths) */ }