feat(furdb): add function for printing instruction

This commit is contained in:
2026-08-17 10:46:27 +02:00
parent a4966a057c
commit 26d935e22a
3 changed files with 111 additions and 0 deletions
+2
View File
@@ -62,6 +62,8 @@ static void breakpoint_hit(furvm::executor& executor, void* data) {
std::cout << "Breakpoint hit\n";
context* ctx = reinterpret_cast<context*>(data);
ctx->halt = true;
ctx->print_instruction();
}
void break_command::execute(context& ctx, const command_info& info) {