show: use dot for wire aliases instead of BUF

This commit is contained in:
N. Engelhardt 2023-09-25 17:20:16 +02:00
parent 934c82254d
commit 3319fdc46e
1 changed files with 1 additions and 1 deletions

View File

@ -575,7 +575,7 @@ struct ShowWorker
} else {
net_conn_map[right_node].in.insert({stringf("x%d", single_idx_count), GetSize(conn.first)});
net_conn_map[left_node].out.insert({stringf("x%d", single_idx_count), GetSize(conn.first)});
fprintf(f, "x%d [shape=box, style=rounded, label=\"BUF\", %s];\n", single_idx_count++, findColor(conn).c_str());
fprintf(f, "x%d [shape=point, %s];\n", single_idx_count++, findColor(conn).c_str());
}
}
}