blob: b5613f921145a96277655d53c84490001891a02a (
plain)
1
2
3
4
5
6
|
//! Opcodes (unless compressed) have the last 2 bits stripped off as they are always 1s for non-compressed instructions.
pub(super) const OP_IMM: u8 = 0b00100;
pub(super) const OP_IMM_32: u8 = 0b00110;
pub(super) const STORE: u8 = 0b01000;
|