Preserve internal wires for external nets

This commit is contained in:
Miodrag Milanovic 2022-04-01 12:07:15 +02:00
parent 2b115d858d
commit 1a1f529099
1 changed files with 1 additions and 1 deletions

View File

@ -2041,7 +2041,7 @@ struct VerificExtNets
string name = stringf("___extnets_%d", portname_cnt++);
Port *new_port = new Port(name.c_str(), drive_up ? DIR_OUT : DIR_IN);
nl->Add(new_port);
net->Connect(new_port);
nl->Buf(net)->Connect(new_port);
// create new Net in up Netlist
Net *new_net = final_net;