Skip to content

Commit

Permalink
Remove explicit bus names
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Bourdeauducq committed Jan 27, 2012
1 parent 28f00c3 commit 8a2646a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions milkymist/lm32/__init__.py
Expand Up @@ -3,8 +3,8 @@

class LM32:
def __init__(self):
self.ibus = i = wishbone.Master("lm32i")
self.dbus = d = wishbone.Master("lm32d")
self.ibus = i = wishbone.Master()
self.dbus = d = wishbone.Master()
self.interrupt = Signal(BV(32))
self.ext_break = Signal()
self._inst = Instance("lm32_top",
Expand Down
2 changes: 1 addition & 1 deletion milkymist/norflash/__init__.py
Expand Up @@ -4,7 +4,7 @@

class NorFlash:
def __init__(self, adr_width, rd_timing):
self.bus = wishbone.Slave("norflash")
self.bus = wishbone.Slave()
self.adr = Signal(BV(adr_width-1))
self.d = Signal(BV(16))
self.oe_n = Signal()
Expand Down
2 changes: 1 addition & 1 deletion milkymist/sram/__init__.py
Expand Up @@ -3,7 +3,7 @@

class SRAM:
def __init__(self, depth):
self.bus = wishbone.Slave("sram")
self.bus = wishbone.Slave()
self.depth = depth

def get_fragment(self):
Expand Down

0 comments on commit 8a2646a

Please sign in to comment.