From: Luke Kenneth Casson Leighton Date: Sat, 4 Dec 2021 18:27:46 +0000 (+0000) Subject: rename function which needs replacing X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fdeae067f88b11b578dcf27493462806ee504960;p=soc.git rename function which needs replacing --- diff --git a/src/soc/experiment/test/test_mmu_dcache_pi.py b/src/soc/experiment/test/test_mmu_dcache_pi.py index d93bd594..e6c6d3fb 100644 --- a/src/soc/experiment/test/test_mmu_dcache_pi.py +++ b/src/soc/experiment/test/test_mmu_dcache_pi.py @@ -123,7 +123,7 @@ class TestMicrowattMemoryPortInterface(PortInterfaceBase): stop = False -def wb_get(dc): +def todo_replace_wb_get(dc): """simulator process for getting memory load requests """ @@ -242,7 +242,7 @@ def test_mmu(): sim.add_clock(1e-6) sim.add_sync_process(wrap(mmu_sim(dut))) - sim.add_sync_process(wrap(wb_get(dcache))) + sim.add_sync_process(wrap(todo_replace_wb_get(dcache))) with sim.write_vcd('test_mmu_pi.vcd'): sim.run()