wb_types fix typo
authorCole Poirier <colepoirier@gmail.com>
Fri, 21 Aug 2020 18:06:52 +0000 (11:06 -0700)
committerCole Poirier <colepoirier@gmail.com>
Fri, 21 Aug 2020 18:06:52 +0000 (11:06 -0700)
src/soc/experiment/wb_types.py

index 018a8daae78bd5d54958603a97bb9f30183d0459..8abd8ead14e688315721489b75daa883d769cba5 100644 (file)
@@ -70,7 +70,7 @@ def WBMasterOutInit():
 #     ack   : std_ulogic;
 #     stall : std_ulogic;
 # end record;
-def class WBSlaveOut(RecordObject):
+class WBSlaveOut(RecordObject):
     def __init__(self):
         super().__init__()
         self.dat   = WBDataType()