UNPKG

32bit-adressing-table-modrm

Version:

Intel- 32-Bit Addressing Forms with the ModR/M Byte converted to an easily searchable Hashmap, also includes a reverse search.

11 lines (10 loc) 437 B
interface ITable { col: string[]; row: string[]; value: string[][]; } export declare const createTable: (table: ITable) => Map<string, Map<string, string>>; export declare const create32bitModRmTable: () => Map<string, Map<string, string>>; export declare const create32bitSIBtable: () => Map<string, Map<string, string>>; export declare const create16bitRmTable: () => Map<string, Map<string, string>>; export {};