Constant INSTRUCTIONS_MAX
pub const INSTRUCTIONS_MAX: u8 = 225;Expand description
Maximum opcode value for single-byte CIL instructions.
This constant defines the upper bound for single-byte opcodes in the CIL instruction set.
Single-byte opcodes range from 0x00 to 0xE0 (224 decimal), making this the array size
for the crate::disassembler::instructions::INSTRUCTIONS table.