feat: implement instruction-granular stepping

This commit is contained in:
2022-12-15 19:31:24 -04:00
parent 21565a9726
commit 460fcec370
3 changed files with 49 additions and 39 deletions

View File

@@ -125,6 +125,7 @@ fn parse(self: *Self, allocator: Allocator, input: []const u8) !Action {
break :blk .{ .send = response };
},
'\x03' => .nothing,
else => std.debug.panic("Unknown: {s}", .{input}),
};
}