9 lines
145 B
Python
9 lines
145 B
Python
|
from migen.fhdl.structure import *
|
||
|
|
||
|
class Refresher:
|
||
|
def __init__(self, timing_settings):
|
||
|
pass
|
||
|
|
||
|
def get_fragment(self):
|
||
|
return Fragment()
|