comment out SPR for now, needs SPR regfile
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 5 Jul 2020 11:22:28 +0000 (12:22 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 5 Jul 2020 11:22:28 +0000 (12:22 +0100)
src/soc/fu/compunits/compunits.py

index 73cc249fc526b1f0ddf3f8c907a0da7c03de8db2..3f2d20bfb31c4df6c41df9b085953cd6d9586302 100644 (file)
@@ -192,7 +192,8 @@ class AllFunctionUnits(Elaboratable):
         units = pspec.units
         if not isinstance(units, dict):
             units = {'alu': 1, 'cr': 1, 'branch': 1, 'trap': 1,
-                     'spr': 1, 'logical': 1,
+                     #'spr': 1, TODO: spr regfile
+                     'logical': 1,
                      'div': 1, 'shiftrot': 1}
         alus = {'alu': ALUFunctionUnit,
                  'cr': CRFunctionUnit,