Change timescale to speed up verilator

This commit is contained in:
Alex Forencich
2020-11-15 13:09:53 -08:00
parent f258ce0f6a
commit f1648ccf78
9 changed files with 9 additions and 9 deletions

View File

@@ -40,7 +40,7 @@ class TB(object):
def __init__(self, dut):
self.dut = dut
cocotb.fork(Clock(dut.clk, 10, units="ns").start())
cocotb.fork(Clock(dut.clk, 2, units="ns").start())
self.axil_master = AxiLiteMaster(dut, "axil", dut.clk, dut.rst)
self.axil_ram = AxiLiteRam(dut, "axil", dut.clk, dut.rst, size=2**16)