fix UnusedElaboratable warning in TLB code
[soc.git] / src / TLB / test / test_tlb.py
1 #import tracemalloc
2 #tracemalloc.start()
3
4 from nmigen.compat.sim import run_simulation
5
6 from TLB.TLB import TLB
7
8 from TestUtil.test_helper import assert_op
9
10 def tbench(dut):
11 yield
12 yield
13 #TODO
14
15 def test_tlb():
16 dut = TLB(15,36,64,8)
17 run_simulation(dut, tbench(dut), vcd_name="Waveforms/test_tlb.vcd")
18 print("TLB Unit Test TODO")
19
20 if __name__ == "__main__":
21 test_tlb()