summaryrefslogtreecommitdiff
path: root/tests/hana/test_simulation_shifter_right_64_test.v
blob: c26d5938ee4b6e558060c078b05dda66f8a0d396 (plain)
1
2
3
4
module test(input [63:0] IN, input [6:0] SHIFT, output [63:0] OUT);

assign OUT = IN >> SHIFT;
endmodule