fix peripheral side slow peripherals name
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 24 Jul 2018 09:39:35 +0000 (10:39 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 24 Jul 2018 09:39:35 +0000 (10:39 +0100)
src/bsv/peripheral_gen/eint.py

index f5a6e86f84e6882e6bc540670b7e21438489f8e8..825f3eb24ce3db9db39ef2b941f165990794aec2 100644 (file)
@@ -35,7 +35,7 @@ class eint(PBase):
         for idx, p in enumerate(self.peripheral.pinspecs):
             pname = p['name']
             sname = self.peripheral.pname(pname).format(count)
-            ps = "pinmux.peripheral_side.%s" % sname
+            ps = "pinmux.peripheral_side.eint.%s" % sname
             comma = '' if idx == size - 1 else ','
             ret.append("             {0}{1}".format(ps, comma))
         ret.append("        });")