Subversion Repositories NedoOS

Rev

Rev 2261 | Blame | Compare with Previous | Last modification | View Log | Download

  1. ; Z80 test - flags only version.
  2. ;
  3. ; Copyright (C) 2012-2023 Patrik Rak (patrik@raxoft.cz)
  4. ;
  5. ; This source code is released under the MIT license, see included license.txt.
  6.         DEVICE ZXSPECTRUM128
  7.  
  8.             macro       testname
  9.             db          "flags"
  10.             endm
  11.  
  12. maskflags   equ         0
  13. onlyflags   equ         1
  14. postccf     equ         0
  15. memptr      equ         0
  16.  
  17.             include     main.asm
  18. main_end:
  19.  
  20.         savebin "z80flags.bin",main,main_end-main
  21.  
  22. ; EOF ;
  23.