aboutsummaryrefslogtreecommitdiffstats
path: root/machxo2/main.cc
diff options
context:
space:
mode:
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;
}