From ae12945371bfde5387c185c2e56462ef7f8f8543 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sun, 24 May 2020 21:57:32 +0100 Subject: [PATCH] over 80 char limit --- src/soc/fu/regspec.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soc/fu/regspec.py b/src/soc/fu/regspec.py index 4e6fc5d1..009f1fbc 100644 --- a/src/soc/fu/regspec.py +++ b/src/soc/fu/regspec.py @@ -67,13 +67,13 @@ class RegSpecALUAPI: def get_out(self, i): if isinstance(self.rwid, int): # old - testing - API (rwid is int) return self.alu.out[i] - # regspec-based API: look up variable through regspec according to row number + # regspec-based API: look up variable through regspec thru row number return getattr(self.alu.n.data_o, self.rwid[1][i][1]) def get_in(self, i): if isinstance(self.rwid, int): # old - testing - API (rwid is int) return self.alu.i[i] - # regspec-based API: look up variable through regspec according to row number + # regspec-based API: look up variable through regspec thru row number return getattr(self.alu.p.data_i, self.rwid[0][i][1]) def get_op(self): -- 2.30.2