aboutsummaryrefslogtreecommitdiffstats
path: root/manual/APPNOTE_011_Design_Investigation/sumprod.v
diff options
context:
space:
mode:
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