aboutsummaryrefslogtreecommitdiffstats
path: root/nexus/fasm.cc
diff options
context:
space:
mode:
Diffstat (limited to 'nexus/fasm.cc')
-rw-r--r--nexus/fasm.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/nexus/fasm.cc b/nexus/fasm.cc
index 71b4c5c2..7d25de58 100644
--- a/nexus/fasm.cc
+++ b/nexus/fasm.cc
@@ -30,8 +30,6 @@ struct NexusFasmWriter
std::ostream &out;
std::vector<std::string> fasm_ctx;
- std::unordered_map<IdString, Arch::CellPinsData> cell_pins_db;
-
NexusFasmWriter(const Context *ctx, std::ostream &out) : ctx(ctx), out(out) {}
// Add a 'dot' prefix to the FASM context stack
@@ -285,8 +283,6 @@ struct NexusFasmWriter
// Write out FASM for the whole design
void operator()()
{
- // Setup pin DB
- ctx->get_cell_pin_data(cell_pins_db);
// Write routing
for (auto n : sorted(ctx->nets)) {
write_net(n.second);