UNPKG

uae-dap

Version:

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

14 lines 487 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const gdbClient_1 = require("./gdbClient"); async function run() { const client = new gdbClient_1.GdbClient(); await client.connect("localhost", 2345); const out = await client.monitor("dumpdma /tmp/dma.out"); console.log(out); // out = await client.monitor("console v -2"); // console.log(out); client.destroy(); } run().catch(console.error); //# sourceMappingURL=testServer.js.map