Fixed minor bug in muldiv which corrects the lint error.

This commit is contained in:
Ross Thompson 2021-04-09 10:56:31 -05:00
parent 99f2d24e05
commit 35f8b4f74f

View File

@ -62,7 +62,7 @@ module muldiv (
// Divide
// *** replace this clock gater
always @(~clk) begin
always @(negedge clk) begin
enable_q <= ~StallM;
end
assign gclk = enable_q & clk;