aboutsummaryrefslogtreecommitdiff
path: root/sim/de1_sta
diff options
context:
space:
mode:
authorFriedrich Beckmann <friedrich.beckmann@hs-augsburg.de>2022-05-16 18:40:52 +0200
committerFriedrich Beckmann <friedrich.beckmann@hs-augsburg.de>2022-05-16 18:40:52 +0200
commitfda13db347b69d24b7327a5b48cd2af7abfc6408 (patch)
treecec927979e53ed5c28df3ab41b487d57dc284d3a /sim/de1_sta
parent9b7fdebd9319e3e6560ff5b3a7ad750a6957a1da (diff)
add / update de1_sta code
I modified the de1_sta demo code and added a testbench.
Diffstat (limited to 'sim/de1_sta')
-rw-r--r--sim/de1_sta/makefile9
-rw-r--r--sim/de1_sta/makefile.sources3
2 files changed, 12 insertions, 0 deletions
diff --git a/sim/de1_sta/makefile b/sim/de1_sta/makefile
new file mode 100644
index 0000000..5db242e
--- /dev/null
+++ b/sim/de1_sta/makefile
@@ -0,0 +1,9 @@
+PROJECT = de1_sta
+
+include ./makefile.sources
+
+# Add here the testbench file
+SOURCE_FILES = $(SYN_SOURCE_FILES) \
+../../src/t_$(PROJECT).vhd
+
+include ../makefile
diff --git a/sim/de1_sta/makefile.sources b/sim/de1_sta/makefile.sources
new file mode 100644
index 0000000..790072d
--- /dev/null
+++ b/sim/de1_sta/makefile.sources
@@ -0,0 +1,3 @@
+SYN_SOURCE_FILES = \
+../../src/de1_sta.vhd
+