Subversion Repositories NedoOS

Rev

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

  1. ; Z80 test - MEMPTR version.
  2. ;
  3. ; However note that the current set of tests was not designed to stress test MEMPTR
  4. ; particularly, so it doesn't detect much - I may eventually add such specific tests later.
  5. ;
  6. ; Copyright (C) 2012-2023 Patrik Rak (patrik@raxoft.cz)
  7. ;
  8. ; This source code is released under the MIT license, see included license.txt.
  9.         DEVICE ZXSPECTRUM128
  10.  
  11.             macro       testname
  12.             db          "MEMPTR"
  13.             endm
  14.  
  15. maskflags   equ         0
  16. onlyflags   equ         1
  17. postccf     equ         0
  18. memptr      equ         1
  19.  
  20.             include     main.asm
  21. main_end:
  22.  
  23.         savebin "z80memptr.bin",main,main_end-main
  24.  
  25. ; EOF ;
  26.