(
session: vscode.DebugSession, startAddr: number, length: number, storeTo: number[])
| 52 | } |
| 53 | |
| 54 | public static readMemory( |
| 55 | session: vscode.DebugSession, startAddr: number, length: number, storeTo: number[]): Promise<boolean> { |
| 56 | const maxChunk = (4 * 1024); |
| 57 | const ranges = AddressRangesUtils.splitIntoChunks([new AddrRange(startAddr, length)], maxChunk); |
| 58 | return MemReadUtils.readMemoryChunks(session, startAddr, ranges, storeTo); |
| 59 | } |
| 60 | } |
nothing calls this directly
no test coverage detected