Skip to content

Commit ea656cb

Browse files
Add default values to next state logic in resultinterface
1 parent 7559f16 commit ea656cb

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

vtr_flow/benchmarks/verilog/boundtop.v

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2059,7 +2059,25 @@ module resultinterface (t1b, t2b, t3b, u1b, u2b, u3b, v1b, v2b, v3b, id1b, id2b,
20592059
end
20602060

20612061
always @(*)
2062-
begin
2062+
begin
2063+
next_state = state ;
2064+
temp_t1b = t1b;
2065+
temp_newdata = newdata;
2066+
temp_u1b = u1b;
2067+
temp_v1b = v1b;
2068+
temp_id1b = id1b;
2069+
temp_hit1b = hit1b;
2070+
temp_resultID = resultID;
2071+
temp_t2b = t2b;
2072+
temp_u2b = u2b;
2073+
temp_id2b = id2b;
2074+
temp_t3b = t3b;
2075+
temp_u3b = u3b;
2076+
temp_v3b = v3b;
2077+
temp_id3b = id3b;
2078+
temp_hit3b = hit3b;
2079+
temp_v2b = v2b;
2080+
temp_hit2b = hit2b;
20632081
case (state)
20642082
0 :
20652083
begin

0 commit comments

Comments
 (0)