diff options
author | Eddie Hung <eddie.hung+gitlab@gmail.com> | 2018-07-17 14:19:43 +0000 |
---|---|---|
committer | Eddie Hung <eddie.hung+gitlab@gmail.com> | 2018-07-17 14:19:43 +0000 |
commit | dabc057da94207c1dfbb8d9679c639ff697bea14 (patch) | |
tree | d8d70b16f021d48fa053949d909fa206ce36927b /ecp5/main.cc | |
parent | 0bae7f5606b15591a23fb63da1c5ff6f93b40747 (diff) | |
parent | f62f04e376f83d650ab1067cdf0f058151828b8a (diff) | |
download | nextpnr-dabc057da94207c1dfbb8d9679c639ff697bea14.tar.gz nextpnr-dabc057da94207c1dfbb8d9679c639ff697bea14.tar.bz2 nextpnr-dabc057da94207c1dfbb8d9679c639ff697bea14.zip |
Merge branch 'master' into 'master'
Master
See merge request eddiehung/nextpnr!2
Diffstat (limited to 'ecp5/main.cc')
-rw-r--r-- | ecp5/main.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ecp5/main.cc b/ecp5/main.cc index 4cb2f10d..7521b88c 100644 --- a/ecp5/main.cc +++ b/ecp5/main.cc @@ -63,6 +63,11 @@ int main(int argc, char *argv[]) #ifndef NO_GUI options.add_options()("gui", "start gui"); #endif + + options.add_options()("25k", "set device type to LFE5U-25F"); + options.add_options()("45k", "set device type to LFE5U-45F"); + options.add_options()("85k", "set device type to LFE5U-85F"); + options.add_options()("json", po::value<std::string>(), "JSON design file to ingest"); options.add_options()("seed", po::value<int>(), "seed value for random number generator"); @@ -111,6 +116,14 @@ int main(int argc, char *argv[]) ArchArgs args; args.type = ArchArgs::LFE5U_45F; + + if (vm.count("25k")) + args.type = ArchArgs::LFE5U_25F; + if (vm.count("45k")) + args.type = ArchArgs::LFE5U_45F; + if (vm.count("85k")) + args.type = ArchArgs::LFE5U_85F; + args.package = "CABGA381"; args.speed = 6; std::unique_ptr<Context> ctx = std::unique_ptr<Context>(new Context(args)); |