Update div.sv

Program clean up
This commit is contained in:
Harshini Srinath 2023-06-12 13:47:09 -07:00 committed by GitHub
parent 15928c5d7b
commit bdd2206817

View File

@ -34,7 +34,7 @@ module div import cvw::*; #(parameter cvw_t P) (
input logic IntDivE, // integer division/remainder instruction of any type
input logic DivSignedE, // signed division
input logic W64E, // W-type instructions (divw, divuw, remw, remuw)
input logic [P.XLEN-1:0] ForwardedSrcAE, ForwardedSrcBE,// Forwarding mux outputs for Source A and B
input logic [P.XLEN-1:0] ForwardedSrcAE, ForwardedSrcBE, // Forwarding mux outputs for Source A and B
output logic DivBusyE, // Divide is busy - stall pipeline
output logic [P.XLEN-1:0] QuotM, RemM // Quotient and remainder outputs
);