From 88dd323bd6a302f9d5a195aee2e7e0ae6f6ec44d Mon Sep 17 00:00:00 2001 From: Cole Poirier Date: Fri, 21 Aug 2020 11:06:52 -0700 Subject: [PATCH] wb_types fix typo --- src/soc/experiment/wb_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/experiment/wb_types.py b/src/soc/experiment/wb_types.py index 018a8daa..8abd8ead 100644 --- a/src/soc/experiment/wb_types.py +++ b/src/soc/experiment/wb_types.py @@ -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() -- 2.30.2