aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/main.cc
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-07-08 11:15:30 +0200
committerDavid Shah <davey1576@gmail.com>2018-07-11 10:41:36 +0200
commitbb683d71d698481f472df26747c5332d49d933c1 (patch)
treea4c81608456b986dd6a066224b92d95bbbd91edb /ecp5/main.cc
parent6f90c3df6118a857b24ee3ef031b54ef8aa8b7a8 (diff)
downloadnextpnr-bb683d71d698481f472df26747c5332d49d933c1.tar.gz
nextpnr-bb683d71d698481f472df26747c5332d49d933c1.tar.bz2
nextpnr-bb683d71d698481f472df26747c5332d49d933c1.zip
ecp5: Add 25k database
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ecp5/main.cc')
-rw-r--r--ecp5/main.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/ecp5/main.cc b/ecp5/main.cc
index d025d8d4..55e835e3 100644
--- a/ecp5/main.cc
+++ b/ecp5/main.cc
@@ -89,8 +89,11 @@ int main(int argc, char *argv[])
"sha1 " GIT_COMMIT_HASH_STR ")\n";
return 1;
}
-
- Context ctx(ArchArgs{});
+ ArchArgs args;
+ args.type = ArchArgs::LFE5U_25F;
+ args.package = "CABGA381";
+ args.speed = 6;
+ Context ctx(args);
if (vm.count("verbose")) {
ctx.verbose = true;