From b4c4c64e7c5bae04edf041e0c2d66b8df4dc69ea Mon Sep 17 00:00:00 2001 From: Brian Koropoff Date: Fri, 21 Jan 2022 17:07:18 -0800 Subject: [PATCH] Add Spartan Edge Accelerator synthesis manifest This allows generating a Vivado project and building with hdlmake --- syn/spartan/Manifest.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 syn/spartan/Manifest.py diff --git a/syn/spartan/Manifest.py b/syn/spartan/Manifest.py new file mode 100644 index 0000000..bd4d472 --- /dev/null +++ b/syn/spartan/Manifest.py @@ -0,0 +1,19 @@ +action = "synthesis" + +syn_device = "xc7s15" +syn_package = "ftgb196" +syn_grade = "-1" +syn_tool = "vivado" +syn_top = "topUnit" +syn_project = "gbahd.xpr" + +syn_fail_on_timing = False + +fetchto = "../../ip" + +modules = { + "local": ["../../hdl"], + "git": [ + "https://github.com/hdl-util/hdmi.git@@a460a3fb56" + ] +}