disassembler-x86-intel
Version:
An Intel x86 disassembler, generates assembly from Opcode
7 lines (5 loc) • 310 B
text/typescript
import { HashMap } from '../../helper/hashMap';
import { OpCode, Operation } from './index';
export const NOT_TABLE = new HashMap<OpCode, Operation>()
.set({ opcode: 'F6', modRm: '2' }, { operation: 'not', op1: 'm8' })
.set({ opcode: 'F7', modRm: '2' }, { operation: 'not', op1: 'm32', has16Bit: true });