From b3b89e26a7da414e380658bbf72a090932f7b9b4 Mon Sep 17 00:00:00 2001 From: Jean THOMAS Date: Fri, 7 Aug 2020 19:51:53 +0200 Subject: [PATCH] gram.core.multiplexer: Fix variable name in _Steerer --- gram/core/multiplexer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gram/core/multiplexer.py b/gram/core/multiplexer.py index bd2e1ba..0817d35 100644 --- a/gram/core/multiplexer.py +++ b/gram/core/multiplexer.py @@ -184,7 +184,7 @@ class _Steerer(Elaboratable): ] m.d.sync += [ - phase.address.eq(Array(cmd.a for cmd in commands)[sel]), + phase.address.eq(Array(cmd.a for cmd in self.commands)[sel]), phase.cas.eq(Array(valid_and(cmd, "cas") for cmd in self.commands)[sel]), phase.ras.eq(Array(valid_and(cmd, "ras") for cmd in self.commands)[sel]), phase.we.eq(Array(valid_and(cmd, "we") for cmd in self.commands)[sel]) -- 2.30.2