Type Alias lc3_ensemble::ast::CondCode
source ยท pub type CondCode = u8;Expand description
A condition code (used for BR), must be between 0 and 7.
The condition codes are listed below:
| instruction | code (bin) |
|---|---|
NOP | 000 |
BRn | 100 |
BRz | 010 |
BRnz | 110 |
BRp | 001 |
BRnp | 101 |
BRzp | 011 |
BR, BRnzp | 111 |