diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-02-20 12:46:29 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-02-20 12:46:29 +0100 |
commit | 98940260e1a0e5d9d5d305b5fabe0aed89c9f57c (patch) | |
tree | abf03d1daf8ec86ef5e781e7e836b7233fb72d03 /manual/PRESENTATION_ExAdv/macc_simple_test_02.v | |
parent | 772330608acd9726e406d182a339a314d2f046a2 (diff) | |
download | yosys-98940260e1a0e5d9d5d305b5fabe0aed89c9f57c.tar.gz yosys-98940260e1a0e5d9d5d305b5fabe0aed89c9f57c.tar.bz2 yosys-98940260e1a0e5d9d5d305b5fabe0aed89c9f57c.zip |
Progress in presentation
Diffstat (limited to 'manual/PRESENTATION_ExAdv/macc_simple_test_02.v')
-rw-r--r-- | manual/PRESENTATION_ExAdv/macc_simple_test_02.v | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/manual/PRESENTATION_ExAdv/macc_simple_test_02.v b/manual/PRESENTATION_ExAdv/macc_simple_test_02.v new file mode 100644 index 000000000..3630102fa --- /dev/null +++ b/manual/PRESENTATION_ExAdv/macc_simple_test_02.v @@ -0,0 +1,6 @@ +module test(a, b, c, d, x, y); +input [15:0] a, b, c, d; +input [31:0] x; +output [31:0] y; +assign y = a*b + (c*d + x); +endmodule |