diff options
| author | Clifford Wolf <clifford@clifford.at> | 2014-02-18 19:37:39 +0100 |
|---|---|---|
| committer | Clifford Wolf <clifford@clifford.at> | 2014-02-18 19:51:03 +0100 |
| commit | 3d9da919d8ec2f73df77dc1df02b132b12241d8e (patch) | |
| tree | d6b671867161a201c57b2a0d969b6561e68d85ca /manual/PRESENTATION_ExAdv/addshift_test.v | |
| parent | a71d09421d31b43b6bda6f6958373ec8a409e3c1 (diff) | |
| download | yosys-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.v | 5 |
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 |
