aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/bitstream.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ice40/bitstream.cc')
-rw-r--r--ice40/bitstream.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/bitstream.cc b/ice40/bitstream.cc
index 918eb01b..9309a7da 100644
--- a/ice40/bitstream.cc
+++ b/ice40/bitstream.cc
@@ -398,7 +398,7 @@ void write_asc(const Design &design, std::ostream &out)
for (auto wire : chip.getWires()) {
IdString net = chip.getWireNet(wire, false);
if (net != IdString())
- out << ".sym " << wire.index << " net_" << net << std::endl;
+ out << ".sym " << wire.index << " " << net << std::endl;
}
}