diff options
Diffstat (limited to 'pyecsca/codegen/client.py')
| -rw-r--r-- | pyecsca/codegen/client.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pyecsca/codegen/client.py b/pyecsca/codegen/client.py index add7e6f..eb56276 100644 --- a/pyecsca/codegen/client.py +++ b/pyecsca/codegen/client.py @@ -304,7 +304,10 @@ class SimulatorTarget(Target): def set_strigger(self): pass - def debug(self): + def debug(self) -> Tuple[str, str]: + return self.model.shortname, self.coords.name + + def quit(self): pass def disconnect(self): |
