opcodes.rs 521 B

123456789101112131415161718
  1. pub const NULL_NAME: u8 = 0x00;
  2. pub const DUAL_NAME_PREFIX: u8 = 0x2E;
  3. pub const MULTI_NAME_PREFIX: u8 = 0x2F;
  4. pub const ZERO_OP: u8 = 0x00;
  5. pub const ONE_OP: u8 = 0x01;
  6. pub const ONES_OP: u8 = 0xff;
  7. pub const BYTE_CONST: u8 = 0x0a;
  8. pub const WORD_CONST: u8 = 0x0b;
  9. pub const DWORD_CONST: u8 = 0x0c;
  10. pub const STRING_PREFIX: u8 = 0x0d;
  11. pub const QWORD_CONST: u8 = 0x0e;
  12. pub const SCOPE_OP: u8 = 0x10;
  13. pub const EXT_OP_REGION_OP: u8 = 0x80;
  14. pub const EXT_REVISION_OP: u8 = 0x30;
  15. pub const EXT_OPCODE_PREFIX: u8 = 0x5b;