mirror of
https://github.com/MPSU/APS.git
synced 2025-09-16 01:30:10 +00:00
Перевод Verilog-кода на SystemVerilog
This commit is contained in:
8
Other/vector_abs/half_divider.sv
Normal file
8
Other/vector_abs/half_divider.sv
Normal file
@@ -0,0 +1,8 @@
|
||||
module half_divider(
|
||||
input logic [31:0] numerator,
|
||||
output logic [31:0] quotient
|
||||
);
|
||||
|
||||
assign quotient = numerator << 1'b1;
|
||||
|
||||
endmodule
|
Reference in New Issue
Block a user