Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 16x 6x 1000x | import { hd } from "../hex.js";
import { debounce } from "../debounce.js";
/**
* The debugging surface the wiki documents, put on `target` (window in the
* app). The bench/profile calls are debounced so that they can be safely run
* from the JS console in firefox.
*/
export function exposeConsoleSurface(target, { loop, processor, video, audioHandler }) {
target.benchmarkCpu = debounce((numCycles) => loop.benchmarkCpu(numCycles), 1);
target.profileCpu = debounce((arg) => loop.profileCpu(arg), 1);
target.benchmarkVideo = debounce((numCycles) => loop.benchmarkVideo(numCycles), 1);
target.profileVideo = debounce((arg) => loop.profileVideo(arg), 1);
target.go = () => loop.go();
target.stop = (debug) => loop.stop(debug);
target.soundChip = audioHandler.soundChip;
target.processor = processor;
target.video = video;
target.hd = (start, end) => {
console.log(hd((x) => processor.readmem(x), start, end));
};
target.m7dump = () => {
console.log(hd((x) => processor.readmem(x) & 0x7f, 0x7c00, 0x7fe8, { width: 40, gap: false }));
};
}
|