aboutsummaryrefslogtreecommitdiffstats
path: root/manual/PRESENTATION_ExAdv/macc_xilinx_test.v
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-02-21 02:13:02 +0100
committerClifford Wolf <clifford@clifford.at>2014-02-21 02:13:02 +0100
commit2aff7b2a47d2ad65ff34e10f008733da9ef50c4a (patch)
treeddabd4a0fd814e21c8d73a63cf1aad30977f74cd /manual/PRESENTATION_ExAdv/macc_xilinx_test.v
parent9351e4d3caef1af7b7768d66b7f6edc12713d109 (diff)
downloadyosys-2aff7b2a47d2ad65ff34e10f008733da9ef50c4a.tar.gz
yosys-2aff7b2a47d2ad65ff34e10f008733da9ef50c4a.tar.bz2
yosys-2aff7b2a47d2ad65ff34e10f008733da9ef50c4a.zip
Progress in presentation
Diffstat (limited to 'manual/PRESENTATION_ExAdv/macc_xilinx_test.v')
-rw-r--r--manual/PRESENTATION_ExAdv/macc_xilinx_test.v16
1 files changed, 8 insertions, 8 deletions
diff --git a/manual/PRESENTATION_ExAdv/macc_xilinx_test.v b/manual/PRESENTATION_ExAdv/macc_xilinx_test.v
index d8fdf724c..683d9d847 100644
--- a/manual/PRESENTATION_ExAdv/macc_xilinx_test.v
+++ b/manual/PRESENTATION_ExAdv/macc_xilinx_test.v
@@ -1,13 +1,13 @@
module test1(a, b, c, d, e, f, y);
-input [19:0] a, b, c;
-input [15:0] d, e, f;
-output [41:0] y;
-assign y = a*b + c*d + e*f;
+ input [19:0] a, b, c;
+ input [15:0] d, e, f;
+ output [41:0] y;
+ assign y = a*b + c*d + e*f;
endmodule
module test2(a, b, c, d, e, f, y);
-input [19:0] a, b, c;
-input [15:0] d, e, f;
-output [41:0] y;
-assign y = a*b + (c*d + e*f);
+ input [19:0] a, b, c;
+ input [15:0] d, e, f;
+ output [41:0] y;
+ assign y = a*b + (c*d + e*f);
endmodule