From 09ef5133b667ac71a3f34a3f35144743217f7acc Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 31 Aug 2021 21:27:08 +0100 Subject: [PATCH] anooother valid_o to convert to o_valid --- src/soc/fu/compunits/test/test_compunit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soc/fu/compunits/test/test_compunit.py b/src/soc/fu/compunits/test/test_compunit.py index 5ed526ec..9882a47e 100644 --- a/src/soc/fu/compunits/test/test_compunit.py +++ b/src/soc/fu/compunits/test/test_compunit.py @@ -88,8 +88,8 @@ def get_cu_outputs(cu, code): # pipelines (or FSMs) the write mask is only valid at that time. if hasattr(cu, "alu"): # ALU CompUnits while True: - valid_o = yield cu.alu.n.valid_o - if valid_o: + o_valid = yield cu.alu.n.o_valid + if o_valid: break yield else: # LDST CompUnit -- 2.30.2