UNPKG

uae-dap

Version:

Debug Adapter Protocol for Amiga development with FS-UAE or WinUAE

10 lines (9 loc) 331 B
import { DebugProtocol } from "@vscode/debugprotocol"; /** * Disassemble a buffer into CPU instructions */ export declare function disassemble(buffer: string, startAddress?: number): Promise<DisassembledOutput>; export interface DisassembledOutput { instructions: DebugProtocol.DisassembledInstruction[]; code: string; }