aboutsummaryrefslogtreecommitdiffstats
path: root/nexus/fasm.cc
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2020-10-13 09:49:53 +0100
committerDavid Shah <dave@ds0.me>2020-11-30 08:45:27 +0000
commit0eb5c72cc5b95a7fb6b848e8d09ea9b235bce9b3 (patch)
tree5d56a5423f21f62090183bc8b220208ecba2a684 /nexus/fasm.cc
parent7f03f4d8960deee8c3edb08277bf59308af305bc (diff)
downloadnextpnr-0eb5c72cc5b95a7fb6b848e8d09ea9b235bce9b3.tar.gz
nextpnr-0eb5c72cc5b95a7fb6b848e8d09ea9b235bce9b3.tar.bz2
nextpnr-0eb5c72cc5b95a7fb6b848e8d09ea9b235bce9b3.zip
nexus: Refactor cell pin style db
Signed-off-by: David Shah <dave@ds0.me>
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);