We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48dcce9 commit 5fbee52Copy full SHA for 5fbee52
vtr_flow/benchmarks/verilog/boundtop.v
@@ -1561,7 +1561,18 @@ reg temp_datavalid;
1561
1562
always @(*)
1563
1564
- begin
+ begin
1565
+ next_state = state;
1566
+ temp_data = data;
1567
+ temp_waddr = waddr;
1568
+ temp_datavalid = datavalid;
1569
+ // For the unregistered values, we have to pick default behavior;
1570
+ // these values are used in enough other defined states to appear to
1571
+ // be reasonable fallbacks, but putting this here does change design
1572
+ // intent:
1573
+ we = 1'b0 ;
1574
+ want_addr = 1'b1 ;
1575
+ want_data = 1'b0 ;
1576
case (state)
1577
0 :
1578
begin
0 commit comments