From: Luke Kenneth Casson Leighton Date: Mon, 4 May 2020 19:49:02 +0000 (+0100) Subject: take out wait for busy in L0BufferCache tests X-Git-Tag: div_pipeline~1386 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=71df595a66e15e003c63cc1874a9004d0a5b269c;p=soc.git take out wait for busy in L0BufferCache tests --- 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