1
0
mirror of synced 2026-04-05 06:11:11 +00:00

Change to blocking assignments in non-clocked process.

Signed-off-by: Joachim Strömbergson <joachim@assured.se>
This commit is contained in:
Joachim Strömbergson
2025-04-23 17:13:37 +02:00
parent bf20bc0848
commit 90f50722ab

View File

@@ -292,10 +292,10 @@ module CC_DLT #(
always @(*)
begin
if (sr) begin
Q <= SR_VAL;
Q = SR_VAL;
end
else if (en) begin
Q <= D;
Q = D;
end
end
@@ -407,7 +407,7 @@ module CC_MULT #(
);
always @(*)
begin
P <= A * B;
P = A * B;
end
endmodule