UNPKG

disassembler-x86-intel

Version:

An Intel x86 disassembler, generates assembly from Opcode

16 lines (15 loc) 531 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.XCHG_TABLE = void 0; var hashMap_1 = require("../../helper/hashMap"); exports.XCHG_TABLE = new hashMap_1.HashMap() .set({ opcode: '90' }, { type: 'rd', operation: 'xchg', op1: 'eax', op2: 'r32', isRegisterIncluded: true, has16Bit: true, }) .set({ opcode: '86' }, { operation: 'xchg', op1: 'r8', op2: 'm8' }) .set({ opcode: '87' }, { operation: 'xchg', op1: 'r32', op2: 'm32', has16Bit: true });