3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-25 10:05:33 +00:00

Merge pull request #5056 from secworks/blocking_assignment_gatemate_cells_sim

Change to blocking assignments in non-clocked process.
This commit is contained in:
Emil J 2025-04-23 23:13:54 +02:00 committed by GitHub
commit f8c027b70e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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