mirror of https://github.com/YosysHQ/nextpnr.git
Add missing connection
This commit is contained in:
parent
d53f774078
commit
da5d42dc9d
|
|
@ -476,6 +476,9 @@ void GateMatePacker::pack_mult()
|
|||
|
||||
NetInfo *comb2_conn = ctx->createNet(ctx->idf("%s$multf%c$comb2", name.c_str(ctx), is_even_x ? 'a' : 'b'));
|
||||
multfab_upper->connectPort(id_OUT, comb2_conn);
|
||||
multfab_lower->ports[id_COMBIN].name = id_COMBIN;
|
||||
multfab_lower->ports[id_COMBIN].type = PORT_IN;
|
||||
multfab_lower->connectPort(id_COMBIN, comb2_conn);
|
||||
multfab_comp->connectPort(id_COMB2, comb2_conn);
|
||||
|
||||
NetInfo *comp_out = ctx->createNet(ctx->idf("%s$multf%c$comp_out", name.c_str(ctx), is_even_x ? 'a' : 'b'));
|
||||
|
|
|
|||
Loading…
Reference in New Issue