mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
examples/dataflow/dma: fix simulation, run it for 100 cycles
This commit is contained in:
parent
683643266f
commit
8489604142
1 changed files with 2 additions and 2 deletions
|
@ -81,11 +81,11 @@ class TBWishboneWriter(TBWishbone):
|
||||||
|
|
||||||
def test_wb_reader():
|
def test_wb_reader():
|
||||||
print("*** Testing Wishbone reader")
|
print("*** Testing Wishbone reader")
|
||||||
run_simulation(TBWishboneReader())
|
run_simulation(TBWishboneReader(), 100)
|
||||||
|
|
||||||
def test_wb_writer():
|
def test_wb_writer():
|
||||||
print("*** Testing Wishbone writer")
|
print("*** Testing Wishbone writer")
|
||||||
run_simulation(TBWishboneWriter())
|
run_simulation(TBWishboneWriter(), 100)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
test_wb_reader()
|
test_wb_reader()
|
||||||
|
|
Loading…
Reference in a new issue