UNPKG

uae-dap

Version:

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

9 lines (8 loc) 1.2 kB
export declare const helpSummary = "Commands:\n m address[,size=16,wordSize=4,rowSize=4][,ab] Memory dump a: ascii, b: bytes (default: both)\n M address=bytes Memory set bytes: unprefixed hexadecimal literal\n d address[,size=16] Disassemble CPU\n c address[,size=16] Disassemble copper\n h command Show detailed help for command\nUAE Console:\n Use a '$' prefix to execute commands in the emulator's built-in console debugger\n e.g: $v -3 Enable visual debugger\n $? Show help\nExpressions:\n Expressions use JavaScript-like syntax and can include literals, symbols, registers and memory values.\n They can be evaluated in the console as well as in command args, watch, conditional breakpoints and logpoints.\n Type 'h expressions' for more details.\n @(address[,size=4]) Unsigned memory value\n @s(address[,size=4]) Signed memory value\n"; export declare const commandHelp: { expressions: string; m: string; M: string; d: string; c: string; };