aboutsummaryrefslogtreecommitdiffstats
path: root/manual/APPNOTE_011_Design_Investigation/sumprod.v
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2023-01-02 16:07:36 +0100
committerGitHub <noreply@github.com>2023-01-02 16:07:36 +0100
commit257b41cd1fc3f5ce73fd111e7014150f46af833c (patch)
tree33aedbe2ca1f0420b182a7dea8606078044902b4 /manual/APPNOTE_011_Design_Investigation/sumprod.v
parent3ebc50dee4007f8cca4ffc0e850bc3e86f7641f4 (diff)
parentf2a4e5f1a077e7980598114adf33951132e60785 (diff)
downloadyosys-257b41cd1fc3f5ce73fd111e7014150f46af833c.tar.gz
yosys-257b41cd1fc3f5ce73fd111e7014150f46af833c.tar.bz2
yosys-257b41cd1fc3f5ce73fd111e7014150f46af833c.zip
Merge pull request #3577 from KrystalDelusion/deprecate_manual
Deprecate manual
Diffstat (limited to 'manual/APPNOTE_011_Design_Investigation/sumprod.v')
-rw-r--r--manual/APPNOTE_011_Design_Investigation/sumprod.v12
1 files changed, 0 insertions, 12 deletions
diff --git a/manual/APPNOTE_011_Design_Investigation/sumprod.v b/manual/APPNOTE_011_Design_Investigation/sumprod.v
deleted file mode 100644
index 4091bf0a1..000000000
--- a/manual/APPNOTE_011_Design_Investigation/sumprod.v
+++ /dev/null
@@ -1,12 +0,0 @@
-module sumprod(a, b, c, sum, prod);
-
- input [7:0] a, b, c;
- output [7:0] sum, prod;
-
- {* sumstuff *}
- assign sum = a + b + c;
- {* *}
-
- assign prod = a * b * c;
-
-endmodule