Index: abstract.c =================================================================== --- abstract.c (revision 717) +++ abstract.c (revision 718) @@ -122,7 +122,14 @@ fprintf(f, "%sNets:\n", prefix); for(e = htsp_first(&abs->nets); e != NULL; e = htsp_next(&abs->nets, e)) { csch_anet_t *net = e->value; + long n; + fprintf(f, "%s %s\n", prefix, net->netname); + fprintf(f, "%s ports:\n", prefix); + for(n = 0; n < net->conns.used; n++) { + csch_aport_t *port = net->conns.array[n]; + fprintf(f, "%s %s-%s\n", prefix, port->parent->name, port->name); + } dump_attr(&net->hdr.attr, f, prefix, " "); }