Stop the debugger on the first instruction

This commit is contained in:
Dane Johnson 2025-08-12 14:09:29 -05:00
parent ab558d9f60
commit d02bc02258

View File

@ -57,6 +57,7 @@
(define vm (make-vm #:debugger debug))
(vm-load-program! vm prgm)
(set! the-debugger (make-debugger vm source (make-breakpoints symbols) #f))
(debugger-breakpoint-add! the-debugger 1)
(reset (run-vm vm))
the-debugger)