aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/examples/tests.cmake
diff options
context:
space:
mode:
authorAlessandro Comodi <acomodi@antmicro.com>2021-03-15 10:51:37 +0100
committerAlessandro Comodi <acomodi@antmicro.com>2021-03-16 15:39:02 +0100
commit3f3cabea2d16cd93c8d9114939b8a4fc883f09f1 (patch)
tree653bc364e0017191418d784269ab062c53a9c15e /fpga_interchange/examples/tests.cmake
parent0b62e540a388287bed9c50b7a113b6a7eb87e541 (diff)
downloadnextpnr-3f3cabea2d16cd93c8d9114939b8a4fc883f09f1.tar.gz
nextpnr-3f3cabea2d16cd93c8d9114939b8a4fc883f09f1.tar.bz2
nextpnr-3f3cabea2d16cd93c8d9114939b8a4fc883f09f1.zip
fpga_interchange: add bbasm step and archcheck
Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
Diffstat (limited to 'fpga_interchange/examples/tests.cmake')
-rw-r--r--fpga_interchange/examples/tests.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/fpga_interchange/examples/tests.cmake b/fpga_interchange/examples/tests.cmake
index ebbdb6be..9dc73add 100644
--- a/fpga_interchange/examples/tests.cmake
+++ b/fpga_interchange/examples/tests.cmake
@@ -82,7 +82,7 @@ function(add_interchange_test)
add_custom_target(test-${family}-${name}-netlist DEPENDS ${netlist})
- set(chipdb_target chipdb-${device}-bba)
+ set(chipdb_target chipdb-${device}-bin)
# Physical Netlist
set(phys ${CMAKE_CURRENT_BINARY_DIR}/${name}.phys)
@@ -90,7 +90,7 @@ function(add_interchange_test)
OUTPUT ${phys}
COMMAND
nextpnr-fpga_interchange
- --chipdb ${chipdb_dir}/chipdb-${device}.bba
+ --chipdb ${chipdb_dir}/chipdb-${device}.bin
--xdc ${xdc}
--netlist ${netlist}
--phys ${phys}
@@ -98,7 +98,7 @@ function(add_interchange_test)
DEPENDS
${netlist}
${chipdb_target}
- ${chipdb_dir}/chipdb-${device}.bba
+ ${chipdb_dir}/chipdb-${device}.bin
)
add_custom_target(test-${family}-${name}-phys DEPENDS ${phys})