選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

21 行
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.