From 71df595a66e15e003c63cc1874a9004d0a5b269c Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 4 May 2020 20:49:02 +0100 Subject: [PATCH] take out wait for busy in L0BufferCache tests --- src/soc/experiment/l0_cache.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soc/experiment/l0_cache.py b/src/soc/experiment/l0_cache.py index 1b5654eb..ca1a9636 100644 --- a/src/soc/experiment/l0_cache.py +++ b/src/soc/experiment/l0_cache.py @@ -378,7 +378,7 @@ def l0_cache_st(dut, addr, data): # can go straight to reset. yield port1.pi.is_st_i.eq(0) #end yield port1.pi.addr.ok.eq(0) # set !ok - yield from wait_busy(port1, True) # wait until not busy + #yield from wait_busy(port1, False) # wait until not busy def l0_cache_ld(dut, addr, expected): @@ -404,7 +404,7 @@ def l0_cache_ld(dut, addr, expected): # cleanup yield port1.pi.is_ld_i.eq(0) #end yield port1.pi.addr.ok.eq(0) # set !ok - yield from wait_busy(port1, no=True) # wait until not busy + #yield from wait_busy(port1, no=False) # wait until not busy return data -- 2.30.2