diff options
| author | 2023-04-02 21:37:28 +0000 | |
|---|---|---|
| committer | 2023-04-02 21:37:28 +0000 | |
| commit | 13c67aba9a3ed72326cfa308b7c3e77e3e9934ed (patch) | |
| tree | 05644e83ee05ce9128995e429ad5a32a37381b40 /asm | |
| parent | add waveform disarm (diff) | |
add more commands
Diffstat (limited to 'asm')
| -rw-r--r-- | asm/creole.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/asm/creole.py b/asm/creole.py index 34f8a63..60cb968 100644 --- a/asm/creole.py +++ b/asm/creole.py @@ -218,9 +218,17 @@ class Instruction(Enum): CLOOP_WRITE = 17, "_render_default", ArgType.VAL, ArgType.VAL, ArgType.VAL WF_LOAD = 18, "_render_default", ArgType.VAL, ArgType.DAT WF_ARM = 19, "_render_default", ArgType.VAL, ArgType.VAL, ArgType.VAL - WF_DISARM = 22, "_render_default", ArgType.VAL SENDVAL = 20, "_render_default", ArgType.VAL SENDDAT = 21, "_render_default", ArgType.DAT + WF_DISARM = 22, "_render_default", ArgType.VAL + TAKE_ADC = 23, "_render_default", ArgType.VAL, ArgType.VAL + RELEASE_ADC = 24, "_render_default", ArgType.VAL + TAKE_DAC = 25, "_render_default", ArgType.VAL, ArgType.VAL + RELEASE_DAC = 26, "_render_default", ArgType.VAL + TAKE_WF = 27, "_render_default", ArgType.VAL, ArgType.VAL + RELEASE_WF = 28, "_render_default", ArgType.VAL + TAKE_CLOOP = 29, "_render_default", ArgType.VAL + RELEASE_CLOOP = 30, "_render_default" def __int__(self): """ Returns the opcode associated with the Instruction. |
