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

22 行
345 B

  1. ;; Copyright (C) 2016 Ben Kurtovic <ben.kurtovic@gmail.com>
  2. ;; Released under the terms of the MIT License. See LICENSE for details.
  3. ; ----- CRATER UNIT TESTING SUITE ---------------------------------------------
  4. ; 04-basic.asm
  5. ; Basic instruction test
  6. .org $0000
  7. main:
  8. di
  9. ld a, $23
  10. inc a
  11. call foo
  12. foo:
  13. push bc
  14. xor c
  15. ret z
  16. rrca
  17. ret