From f43f46c55afa91e7352fa3d3ff334b363331eb2e Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 15 Sep 2020 21:27:47 +0100 Subject: [PATCH] add back (totally confusing) accidentally-removed code due to use of "types" (which should not be placed in the .py file, they should only go in a .pyi) --- src/soc/fu/div/fsm.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/soc/fu/div/fsm.py b/src/soc/fu/div/fsm.py index 50c07835..3af0928f 100644 --- a/src/soc/fu/div/fsm.py +++ b/src/soc/fu/div/fsm.py @@ -157,6 +157,9 @@ class FSMDivCoreStage(ControlBase): m.submodules.div_state_init = self.div_state_init data_i = self.p.data_i data_o = self.n.data_o + core_i = data_i.core + core_o = data_o.core + core_saved_i = self.saved_input_data.core # TODO: handle cancellation -- 2.30.2