startBreak static method

Future<void> startBreak()

Implementation

static Future<void> startBreak() async {
  await Z.sendIO({
    "command": ioCommands.printDebug,
    "message": '(break)>>> 0x${debugStartAddr!.toRadixString(16)}:'
        ' opCode: ${Z.engine.mem.loadb(debugStartAddr!)}'
        '\n'
        '    Locals ${dumpLocals()}\n'
  });

  Z.callAsync(_repl);
}