3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-05-14 19:24:45 +00:00

Merge pull request #5055 from secworks/blocking_assignment_in_cells_sim

Changing non clocked alway assignment to blocking.
This commit is contained in:
Emil J 2025-04-23 23:01:33 +02:00 committed by GitHub
commit 209850e69d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -386,7 +386,7 @@ module TRELLIS_IO(
);
parameter DIR = "INPUT";
reg T_pd;
always @(*) if (T === 1'bz) T_pd <= 1'b0; else T_pd <= T;
always @(*) if (T === 1'bz) T_pd = 1'b0; else T_pd = T;
generate
if (DIR == "INPUT") begin