File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3
3
4
4
class LM32 :
5
5
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 ()
8
8
self .interrupt = Signal (BV (32 ))
9
9
self .ext_break = Signal ()
10
10
self ._inst = Instance ("lm32_top" ,
Original file line number Diff line number Diff line change 4
4
5
5
class NorFlash :
6
6
def __init__ (self , adr_width , rd_timing ):
7
- self .bus = wishbone .Slave ("norflash" )
7
+ self .bus = wishbone .Slave ()
8
8
self .adr = Signal (BV (adr_width - 1 ))
9
9
self .d = Signal (BV (16 ))
10
10
self .oe_n = Signal ()
Original file line number Diff line number Diff line change 3
3
4
4
class SRAM :
5
5
def __init__ (self , depth ):
6
- self .bus = wishbone .Slave ("sram" )
6
+ self .bus = wishbone .Slave ()
7
7
self .depth = depth
8
8
9
9
def get_fragment (self ):
You can’t perform that action at this time.
0 commit comments