module drop_a_bit(in, out); input [7:0] in; output [6:0] out; assign out = in[7:1]; // use only the top 7 bits of the input endmodule