frontend/bist: fix missing AutoCSR
This commit is contained in:
parent
a40b0f760c
commit
37c9d6dd46
|
@ -30,7 +30,7 @@ class LFSR(Module):
|
|||
]
|
||||
|
||||
|
||||
class LiteDRAMBISTGenerator(Module):
|
||||
class LiteDRAMBISTGenerator(Module, AutoCSR):
|
||||
def __init__(self, dram_port):
|
||||
self.reset = CSR()
|
||||
self.shoot = CSR()
|
||||
|
@ -66,7 +66,7 @@ class LiteDRAMBISTGenerator(Module):
|
|||
]
|
||||
|
||||
|
||||
class LiteDRAMBISTChecker(Module):
|
||||
class LiteDRAMBISTChecker(Module, AutoCSR):
|
||||
def __init__(self, dram_port):
|
||||
self.reset = CSR()
|
||||
self.shoot = CSR()
|
||||
|
|
Loading…
Reference in New Issue