diff options
author | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-18 16:51:05 -0800 |
---|---|---|
committer | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-23 14:09:27 -0800 |
commit | cf554f9338db84fa0d12afd83e10f7791e62efa1 (patch) | |
tree | 54fb24ca161d1717462240d9cbc54188f6b474c5 /fpga_interchange/examples/template.mk | |
parent | 3e5a23ed5b25570c33669dfd8bdd226016968bb5 (diff) | |
download | nextpnr-cf554f9338db84fa0d12afd83e10f7791e62efa1.tar.gz nextpnr-cf554f9338db84fa0d12afd83e10f7791e62efa1.tar.bz2 nextpnr-cf554f9338db84fa0d12afd83e10f7791e62efa1.zip |
Add constant network test case.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'fpga_interchange/examples/template.mk')
-rw-r--r-- | fpga_interchange/examples/template.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fpga_interchange/examples/template.mk b/fpga_interchange/examples/template.mk index 819cdb1f..d12a4e11 100644 --- a/fpga_interchange/examples/template.mk +++ b/fpga_interchange/examples/template.mk @@ -46,6 +46,15 @@ build/$(DESIGN)_phys.yaml: build/$(DESIGN).phys phys_yaml: build/$(DESIGN)_phys.yaml +verbose: build/$(DESIGN).netlist + $(NEXTPNR_BIN) \ + --chipdb $(BBA_PATH) \ + --xdc $(DESIGN).xdc \ + --netlist build/$(DESIGN).netlist \ + --phys build/$(DESIGN).phys \ + --package $(PACKAGE) \ + --verbose + debug: build/$(DESIGN).netlist gdb --args $(NEXTPNR_BIN) \ --chipdb $(BBA_PATH) \ |