9 lines
190 B
Python
9 lines
190 B
Python
|
from migen.fhdl.structure import *
|
||
|
|
||
|
class BankMachine:
|
||
|
def __init__(self, geom_settings, timing_settings, address_align, bankn, slots):
|
||
|
pass
|
||
|
|
||
|
def get_fragment(self):
|
||
|
return Fragment()
|