m68kdecode
Version:
Port of deplinenoise/m68kdecode to Typescript
11 lines (10 loc) • 362 B
TypeScript
export * from "./types";
export { decodeInstruction } from "./decode";
export { instructionToString } from "./to_string";
/**
* Convenience function to decode and convert to string
*
* @param code {Uint8Array} Instruction byte array
* @returns {string} Source instruction text
*/
export declare function decodeInstructionToString(code: Uint8Array): string;