diff options
| author | Damien George <damien@micropython.org> | 2020-06-26 18:26:01 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2020-06-27 00:24:04 +1000 |
| commit | b3b8706d27cffbfc4cdd447b204ae7083283d13c (patch) | |
| tree | d267a49a4e3d87ae6a0565b6404aa3bb9285ff5b /py/asmthumb.h | |
| parent | aa26fe62d8728c95d447475ced9b4a03380025ea (diff) | |
py/asm: Add condition codes for signed comparisons.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py/asmthumb.h')
| -rw-r--r-- | py/asmthumb.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/py/asmthumb.h b/py/asmthumb.h index 9e6f242cc..17b694a74 100644 --- a/py/asmthumb.h +++ b/py/asmthumb.h @@ -80,12 +80,19 @@ void asm_thumb_exit(asm_thumb_t *as); #define ASM_THUMB_OP_IT (0xbf00) #define ASM_THUMB_OP_ITE_EQ (0xbf0c) +#define ASM_THUMB_OP_ITE_NE (0xbf14) #define ASM_THUMB_OP_ITE_CS (0xbf2c) +#define ASM_THUMB_OP_ITE_CC (0xbf34) #define ASM_THUMB_OP_ITE_MI (0xbf4c) +#define ASM_THUMB_OP_ITE_PL (0xbf54) #define ASM_THUMB_OP_ITE_VS (0xbf6c) +#define ASM_THUMB_OP_ITE_VC (0xbf74) #define ASM_THUMB_OP_ITE_HI (0xbf8c) +#define ASM_THUMB_OP_ITE_LS (0xbf94) #define ASM_THUMB_OP_ITE_GE (0xbfac) +#define ASM_THUMB_OP_ITE_LT (0xbfb4) #define ASM_THUMB_OP_ITE_GT (0xbfcc) +#define ASM_THUMB_OP_ITE_LE (0xbfd4) #define ASM_THUMB_OP_NOP (0xbf00) #define ASM_THUMB_OP_WFI (0xbf30) |
