25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
504B

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

Powered by TurnKey Linux.