From: Daniel Benusovich Date: Tue, 19 Feb 2019 05:25:26 +0000 (-0800) Subject: One more comment change X-Git-Tag: div_pipeline~2394 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=16126acdbc1259e99c8d0e1f7c3ecc4d8a2887f5;p=soc.git One more comment change --- diff --git a/TLB/CamEntry.py b/TLB/CamEntry.py index e4f1d784..500313fb 100644 --- a/TLB/CamEntry.py +++ b/TLB/CamEntry.py @@ -134,13 +134,13 @@ def testbench(dut): yield from set_cam(dut, write, key, data) yield from check_all(dut, key, data, match, 0, 0, 0) - # Check write + # Check overwrite write = 1 key = 2 data = 5 match = 1 yield from set_cam(dut, write, key, data) - yield from check_all(dut, key, data, match, 0, 0, 0) + yield from check_all(dut, key, data, match, 0, 0, 0) yield