whitespace cleanup
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 4 May 2020 19:41:53 +0000 (20:41 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 4 May 2020 19:41:53 +0000 (20:41 +0100)
src/soc/experiment/l0_cache.py

index 20868d2069625fa440b14c908e82c99c9483f5c9..1b5654ebbb7b9eefe77062bd694180bd36bc17ac 100644 (file)
@@ -325,6 +325,7 @@ class TstL0CacheBuffer(Elaboratable):
         yield self.mem.wrport.data
         # TODO: mem ports
 
+
 def wait_busy(port, no=False):
     while True:
         busy = yield port.pi.busy_o
@@ -342,6 +343,7 @@ def wait_addr(port):
             break
         yield
 
+
 def wait_ldok(port):
     while True:
         ldok = yield port.pi.ld.ok
@@ -350,6 +352,7 @@ def wait_ldok(port):
             break
         yield
 
+
 def l0_cache_st(dut, addr, data):
     l0 = dut.l0
     mem = dut.mem
@@ -414,8 +417,6 @@ def l0_cache_ldst(dut):
     yield from l0_cache_st(dut, addr, data)
     result = yield from l0_cache_ld(dut, addr, data)
     yield
-    yield
-    yield
     assert data == result, "data %x != %x" % (result, data)