uae-dap
Version:
Debug Adapter Protocol for Amiga development with FS-UAE or WinUAE
25 lines (24 loc) • 721 B
TypeScript
export interface DisassembledFile {
memoryReference?: string;
instructionCount?: number;
/** Should be disassembled as copper instructions? */
copper?: boolean;
/** Segment ID */
segmentId?: number;
/** Stack frame index */
stackFrameIndex?: number;
}
/**
* Create file path for DisassembledFile
*/
export declare function disassembledFileToPath(file: DisassembledFile): string;
/**
* Check if path is for a disassembled file
*/
export declare function isDisassembledFile(path: string): boolean;
/**
* Create a DisassembledFile from a path string
*
* Extracts properties from tokens in filename.
*/
export declare function disassembledFileFromPath(path: string): DisassembledFile;