UNPKG

disassembler-x86-intel

Version:

An Intel x86 disassembler, generates assembly from Opcode

8 lines (6 loc) 323 B
import { HashMap } from '../../helper/hashMap'; import { OpCode, Operation } from './index'; export const INT_TABLE = new HashMap<OpCode, Operation>() .set({ opcode: 'CC' }, { operation: 'int', constant: '3' }) .set({ opcode: 'CD' }, { operation: 'int', op1: 'imm8' }) .set({ opcode: 'CE' }, { operation: 'into' });