todo static method
Implementation
static void todo([String? message]) async {
await Z.sendIO({
"command": ioCommands.printDebug,
"message": 'Stopped At: 0x${Z.engine.programCounter.toRadixString(16)}\n\n'
'Text Buffer:\n'
'${Z.sbuff}\n'
'${message != null ? "TODO: $message" : ""}\n'
});
throw Exception("Not Implemented");
}