diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-05-23 18:38:20 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2017-05-23 18:38:20 +0200 |
commit | dca3b3cd5f812273521928c1a1ac924d798d2920 (patch) | |
tree | ef129348675ed3e947e42ac9320e0082028528a0 /examples/osu035/example.v | |
parent | 664ba4d80e89a97d7a6aed8bdd5b9c7570f793d2 (diff) | |
download | yosys-dca3b3cd5f812273521928c1a1ac924d798d2920.tar.gz yosys-dca3b3cd5f812273521928c1a1ac924d798d2920.tar.bz2 yosys-dca3b3cd5f812273521928c1a1ac924d798d2920.zip |
Add examples/osu035
Diffstat (limited to 'examples/osu035/example.v')
-rw-r--r-- | examples/osu035/example.v | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/osu035/example.v b/examples/osu035/example.v new file mode 100644 index 000000000..0f043e5fc --- /dev/null +++ b/examples/osu035/example.v @@ -0,0 +1,3 @@ +module top (input clk, input [7:0] a, b, output reg [15:0] c); + always @(posedge clk) c <= a * b; +endmodule |