mirror of
https://github.com/MPSU/APS.git
synced 2025-09-15 17:20:10 +00:00
8 lines
124 B
Verilog
8 lines
124 B
Verilog
module half_divider(
|
|
input [31:0] numerator,
|
|
output[31:0] quotient
|
|
);
|
|
|
|
assign quotient = numerator << 1'b1;
|
|
|
|
endmodule |