|
- ; VICE monitor playback file for c64os.prg
- ; Usage inside the VICE monitor:
- ; playback "examples/vice-monitor-c64os.txt"
-
- radix H
- device c:
- sidefx off
-
- ; Break when the BASIC stub transfers control to the machine code entry.
- break exec $0810
-
- ; Watch for writes to the 6510 CPU port so banking changes are visible.
- watch store $0001
-
- ; Show the BASIC stub, start of code, and current banking registers.
- d $0801 $0840
- m $0000 $0002
-
- ; Stop playback so the user or agent can resume with X when ready.
- stop
|