diff options
Diffstat (limited to 'tests/hana/test_simulation_shifter_left_4_test.v')
-rw-r--r-- | tests/hana/test_simulation_shifter_left_4_test.v | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/hana/test_simulation_shifter_left_4_test.v b/tests/hana/test_simulation_shifter_left_4_test.v new file mode 100644 index 000000000..c525401f1 --- /dev/null +++ b/tests/hana/test_simulation_shifter_left_4_test.v @@ -0,0 +1,4 @@ +module test(input [3:0] IN, input [2:0] SHIFT, output [3:0] OUT); + +assign OUT = IN << SHIFT; +endmodule |