mirror of
https://github.com/MPSU/APS.git
synced 2025-09-16 17:40:41 +00:00
Initial commit
This commit is contained in:
8
Other/vector_abs/half_divider.v
Normal file
8
Other/vector_abs/half_divider.v
Normal file
@@ -0,0 +1,8 @@
|
||||
module half_divider(
|
||||
input [31:0] numerator,
|
||||
output[31:0] quotient
|
||||
);
|
||||
|
||||
assign quotient = numerator << 1'b1;
|
||||
|
||||
endmodule
|
Reference in New Issue
Block a user