almost all tests work
[soc.git] / src / soc / TLB / ariane / test / test_plru.py
index 68dcfa583b88914dcc271097fb62ac5399a23eaa..9222d7969e913f2adbaa0104d623b4edf62b23f4 100644 (file)
@@ -1,14 +1,12 @@
 import sys
-sys.path.append("../src")
-sys.path.append("../../../TestUtil")
-
-from TLB.ariane.plru import PLRU
-
+from soc.TLB.ariane.plru import PLRU
 from nmigen.compat.sim import run_simulation
 
+
 def tbench(dut):
     yield
 
+
 if __name__ == "__main__":
     dut = PLRU(4)
     run_simulation(dut, tbench(dut), vcd_name="test_plru.vcd")