aboutsummaryrefslogtreecommitdiffstats
path: root/nexus/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'nexus/main.cc')
-rw-r--r--nexus/main.cc13
1 files changed, 11 insertions, 2 deletions
diff --git a/nexus/main.cc b/nexus/main.cc
index 77f739a8..9549a573 100644
--- a/nexus/main.cc
+++ b/nexus/main.cc
@@ -49,11 +49,20 @@ po::options_description NexusCommandHandler::getArchOptions()
po::options_description specific("Architecture specific options");
specific.add_options()("chipdb", po::value<std::string>(), "name of chip database binary");
specific.add_options()("device", po::value<std::string>(), "device name");
-
+ specific.add_options()("fasm", po::value<std::string>(), "fasm file to write");
return specific;
}
-void NexusCommandHandler::customBitstream(Context *ctx) {}
+void NexusCommandHandler::customBitstream(Context *ctx)
+{
+ if (vm.count("fasm")) {
+ std::string filename = vm["fasm"].as<std::string>();
+ std::ofstream out(filename);
+ if (!out)
+ log_error("Failed to open output FASM file %s.\n", filename.c_str());
+ ctx->write_fasm(out);
+ }
+}
std::unique_ptr<Context> NexusCommandHandler::createContext(std::unordered_map<std::string, Property> &values)
{