mirror of
https://github.com/MPSU/APS.git
synced 2025-09-15 17:20:10 +00:00
18 lines
674 B
Systemverilog
18 lines
674 B
Systemverilog
/* -----------------------------------------------------------------------------
|
|
* Project Name : Architectures of Processor Systems (APS) lab work
|
|
* Organization : National Research University of Electronic Technology (MIET)
|
|
* Department : Institute of Microdevices and Control Systems
|
|
* Author(s) : Andrei Solodovnikov
|
|
* Email(s) : hepoh@org.miet.ru
|
|
|
|
See https://github.com/MPSU/APS/blob/master/LICENSE file for licensing details.
|
|
* ------------------------------------------------------------------------------
|
|
*/
|
|
module half_divider(
|
|
input logic [31:0] numerator,
|
|
output logic [31:0] quotient
|
|
);
|
|
|
|
assign quotient = numerator << 1'b1;
|
|
|
|
endmodule |