FreeCalypso > hg > ueda-linux
comparison ueda/uschem-netlist/stats.c @ 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 #include <stdio.h> | |
2 | |
3 extern int total_unnamed_nets; | |
4 extern int total_pin_connections; | |
5 extern int total_expl_noconnects; | |
6 | |
7 stats_output() | |
8 { | |
9 report_named_net_hash_quality(); | |
10 printf("Total unnamed nets: %d\n", total_unnamed_nets); | |
11 printf("Total pin connections: %d\n", total_pin_connections); | |
12 printf("Total NoConnect pins: %d\n", total_expl_noconnects); | |
13 } |