Skip to content

Commit 8a2646a

Browse files
author
Sebastien Bourdeauducq
committedJan 27, 2012
Remove explicit bus names
1 parent 28f00c3 commit 8a2646a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎milkymist/lm32/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
class LM32:
55
def __init__(self):
6-
self.ibus = i = wishbone.Master("lm32i")
7-
self.dbus = d = wishbone.Master("lm32d")
6+
self.ibus = i = wishbone.Master()
7+
self.dbus = d = wishbone.Master()
88
self.interrupt = Signal(BV(32))
99
self.ext_break = Signal()
1010
self._inst = Instance("lm32_top",

‎milkymist/norflash/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class NorFlash:
66
def __init__(self, adr_width, rd_timing):
7-
self.bus = wishbone.Slave("norflash")
7+
self.bus = wishbone.Slave()
88
self.adr = Signal(BV(adr_width-1))
99
self.d = Signal(BV(16))
1010
self.oe_n = Signal()

‎milkymist/sram/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class SRAM:
55
def __init__(self, depth):
6-
self.bus = wishbone.Slave("sram")
6+
self.bus = wishbone.Slave()
77
self.depth = depth
88

99
def get_fragment(self):

0 commit comments

Comments
 (0)