avalon/AvalonMM2Wishbone: Avoid reseting burst_set (not useful since always set before use).

This commit is contained in:
Florent Kermarrec 2023-05-08 09:29:02 +02:00
parent 451fb8d378
commit a62149831d
1 changed files with 0 additions and 2 deletions

View File

@ -116,7 +116,6 @@ class AvalonMM2Wishbone(Module):
If(burst_counter == 0,
burst_cycle.eq(0),
wb.sel.eq(avl.byteenable),
NextValue(burst_sel, 0),
NextState("SINGLE")
)
)
@ -143,6 +142,5 @@ class AvalonMM2Wishbone(Module):
wb.cyc.eq(0),
wb.stb.eq(0),
wb.sel.eq(avl.byteenable),
NextValue(burst_sel, 0),
NextState("SINGLE"))
)