aboutsummaryrefslogtreecommitdiffstats
path: root/manual/PRESENTATION_ExAdv/addshift_test.v
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-02-18 19:37:39 +0100
committerClifford Wolf <clifford@clifford.at>2014-02-18 19:51:03 +0100
commit3d9da919d8ec2f73df77dc1df02b132b12241d8e (patch)
treed6b671867161a201c57b2a0d969b6561e68d85ca /manual/PRESENTATION_ExAdv/addshift_test.v
parenta71d09421d31b43b6bda6f6958373ec8a409e3c1 (diff)
downloadyosys-3d9da919d8ec2f73df77dc1df02b132b12241d8e.tar.gz
yosys-3d9da919d8ec2f73df77dc1df02b132b12241d8e.tar.bz2
yosys-3d9da919d8ec2f73df77dc1df02b132b12241d8e.zip
Progress in presentation
Diffstat (limited to 'manual/PRESENTATION_ExAdv/addshift_test.v')
-rw-r--r--manual/PRESENTATION_ExAdv/addshift_test.v5
1 files changed, 5 insertions, 0 deletions
diff --git a/manual/PRESENTATION_ExAdv/addshift_test.v b/manual/PRESENTATION_ExAdv/addshift_test.v
new file mode 100644
index 000000000..b53271faa
--- /dev/null
+++ b/manual/PRESENTATION_ExAdv/addshift_test.v
@@ -0,0 +1,5 @@
+module test (A, B, X, Y);
+input [7:0] A, B;
+output [7:0] X = A + B;
+output [7:0] Y = A + A;
+endmodule