aboutsummaryrefslogtreecommitdiffstats
path: root/machxo2/main.cc
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-12-17 07:11:31 +0000
committerGitHub <noreply@github.com>2021-12-17 07:11:31 +0000
commita12057777334be8e45e540c63c0da199a59489ba (patch)
tree2394fb1f6461efcffc7c7d169bf67d9ea414c369 /machxo2/main.cc
parentd04cfd5f0f6da184f5b8a03f0ce18fbd1d98eca3 (diff)
parent064b6d808e9b91c93258a53ac1a18b3b84431545 (diff)
downloadnextpnr-a12057777334be8e45e540c63c0da199a59489ba.tar.gz
nextpnr-a12057777334be8e45e540c63c0da199a59489ba.tar.bz2
nextpnr-a12057777334be8e45e540c63c0da199a59489ba.zip
Merge pull request #858 from cr1901/machxo2
MachXO2 Checkpoint 2
Diffstat (limited to 'machxo2/main.cc')
-rw-r--r--machxo2/main.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/machxo2/main.cc b/machxo2/main.cc
index 53b765fb..e29e117b 100644
--- a/machxo2/main.cc
+++ b/machxo2/main.cc
@@ -69,7 +69,6 @@ po::options_description MachXO2CommandHandler::getArchOptions()
// specific.add_options()("lpf", po::value<std::vector<std::string>>(), "LPF pin constraint file(s)");
- specific.add_options()("no-iobs", "disable automatic IO buffer insertion (unimplemented- always enabled)");
return specific;
}
@@ -108,8 +107,6 @@ std::unique_ptr<Context> MachXO2CommandHandler::createContext(dict<std::string,
}
auto ctx = std::unique_ptr<Context>(new Context(chipArgs));
- if (vm.count("no-iobs"))
- ctx->settings[ctx->id("disable_iobs")] = Property::State::S1;
return ctx;
}