From: Luke Kenneth Casson Leighton Date: Tue, 31 Aug 2021 20:27:08 +0000 (+0100) Subject: anooother valid_o to convert to o_valid X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=09ef5133b667ac71a3f34a3f35144743217f7acc;p=soc.git anooother valid_o to convert to o_valid --- 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