over 80 char limit
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 24 May 2020 20:57:32 +0000 (21:57 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 24 May 2020 20:57:32 +0000 (21:57 +0100)
src/soc/fu/regspec.py

index 4e6fc5d1ce3cd9b2ad94cf26f4dae29db57c658a..009f1fbc5e63caa579f3fbf3337f54941760c7df 100644 (file)
@@ -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):