Changing non clocked alway assignment to blocking.

Signed-off-by: Joachim Strömbergson <joachim@assured.se>
This commit is contained in:
Joachim Strömbergson 2025-04-23 16:59:53 +02:00
parent bf20bc0848
commit e4d6781088
No known key found for this signature in database
GPG Key ID: 5DDC7C542422EC8D
1 changed files with 1 additions and 1 deletions

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