diff options
| author | J08nY | 2020-02-28 17:25:51 +0100 |
|---|---|---|
| committer | J08nY | 2020-02-28 17:35:08 +0100 |
| commit | 0341d359dc67ced3f1e65d1d11af3590c1f0992f (patch) | |
| tree | 660140e64e8abe7647554e1424b1678a3ab98631 /pyecsca/codegen/action.h | |
| parent | b387d00511a03dc20e15ac55fcbf07f3dfa79ce0 (diff) | |
| download | pyecsca-codegen-0341d359dc67ced3f1e65d1d11af3590c1f0992f.tar.gz pyecsca-codegen-0341d359dc67ced3f1e65d1d11af3590c1f0992f.tar.zst pyecsca-codegen-0341d359dc67ced3f1e65d1d11af3590c1f0992f.zip | |
Add dynamic triggering.
Diffstat (limited to 'pyecsca/codegen/action.h')
| -rw-r--r-- | pyecsca/codegen/action.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pyecsca/codegen/action.h b/pyecsca/codegen/action.h new file mode 100644 index 0000000..183f03b --- /dev/null +++ b/pyecsca/codegen/action.h @@ -0,0 +1,14 @@ +#ifndef ACTION_H_ +#define ACTION_H_ + +#include <stdlib.h> + +extern uint32_t action_vector; + +void action_start(uint32_t action); + +void action_end(uint32_t action); + +void action_set(uint32_t new_vector); + +#endif //ACTION_H_
\ No newline at end of file |
