Skip to content

Commit

Permalink
interconnect/wishbone: Revert SRAM to Module, needs to be investigated.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Oct 27, 2023
1 parent ff271b0 commit d021564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litex/soc/interconnect/wishbone.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def __init__(self, master, slave):

# Wishbone SRAM ------------------------------------------------------------------------------------

class SRAM(LiteXModule):
class SRAM(Module): # FIXME: Switch to LiteXModule.
def __init__(self, mem_or_size, read_only=None, write_only=None, init=None, bus=None, name=None):
if bus is None:
bus = Interface(data_width=32, address_width=32, addressing="word")
Expand Down

0 comments on commit d021564

Please sign in to comment.