top.v 98 Bytes
Newer Older
1 2 3 4 5
module top (y, w);
   output y;
   input [2:0] w;
   assign y = 1'b1 >> (w * (3'b110));
endmodule