Skip to content

Commit 27ce500

Browse files
committed
vpr: base: netlist writer: fixup default unconnected ports
Signed-off-by: Pawel Czarnecki <[email protected]>
1 parent badc3a4 commit 27ce500

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/base/netlist_writer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2436,7 +2436,7 @@ void print_verilog_port(std::ostream& os, size_t& unconn_count, const std::strin
24362436
if (nets[ipin].empty()) {
24372437
//Disconnected
24382438
if (type == PortType::INPUT || type == PortType::CLOCK) {
2439-
os << "1'b0";
2439+
os << "1'bZ";
24402440
} else {
24412441
VTR_ASSERT(type == PortType::OUTPUT);
24422442
os << "";

0 commit comments

Comments
 (0)