aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/main.cc
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-07-08 18:36:59 +0200
committerDavid Shah <davey1576@gmail.com>2018-07-11 10:42:09 +0200
commitde82ecad592a98a7061bfccb62d3df40d50b1354 (patch)
treedc685b41f2b8a5e24ea40226e802da6b14e38fee /ecp5/main.cc
parent54f06fdf72307579a6808a051f81a6d67e89f0ff (diff)
downloadnextpnr-de82ecad592a98a7061bfccb62d3df40d50b1354.tar.gz
nextpnr-de82ecad592a98a7061bfccb62d3df40d50b1354.tar.bz2
nextpnr-de82ecad592a98a7061bfccb62d3df40d50b1354.zip
ecp5: Make target device 45k on account of current hardware access
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ecp5/main.cc')
-rw-r--r--ecp5/main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ecp5/main.cc b/ecp5/main.cc
index 6456a11e..ae229d51 100644
--- a/ecp5/main.cc
+++ b/ecp5/main.cc
@@ -108,7 +108,7 @@ int main(int argc, char *argv[])
Trellis::load_database(TRELLIS_ROOT "/database");
ArchArgs args;
- args.type = ArchArgs::LFE5U_25F;
+ args.type = ArchArgs::LFE5U_45F;
args.package = "CABGA381";
args.speed = 6;
Context ctx(args);
@@ -149,7 +149,7 @@ int main(int argc, char *argv[])
log_error("Routing design failed.\n");
// TEST BEGIN
- Trellis::Chip c("LFE5U-25F");
+ Trellis::Chip c("LFE5U-45F");
for (auto pip : ctx.getPips()) {
if (!ctx.checkPipAvail(pip)) {
auto tile = c.get_tile_by_position_and_type(pip.location.y, pip.location.x, ctx.getPipTiletype(pip));