Files
APS/Other/vector_abs/half_divider.v
Andrei Solodovnikov f4c0960704 Initial commit
2023-09-07 17:06:55 +03:00

8 lines
124 B
Verilog

module half_divider(
input [31:0] numerator,
output[31:0] quotient
);
assign quotient = numerator << 1'b1;
endmodule