Index: netlist_helper.c =================================================================== --- netlist_helper.c (revision 7418) +++ netlist_helper.c (revision 7419) @@ -114,7 +114,10 @@ void nethlp_net_add_term(nethlp_net_ctx_t *nctx, const char *part, const char *pin) { - + char *refdes = htsp_get(&nctx->nhctx->id2refdes, part); + if (refdes == NULL) + refdes = "n/a"; + printf("net: %s %s (%s) %s\n", nctx->netname, refdes, part, pin); } void nethlp_net_destroy(nethlp_net_ctx_t *nctx)