Subversion Repositories NedoOS

Rev

Rev 2265 | 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.  
  10.                 org     0x100
  11. cmd_begin:
  12.  
  13.                 include "nedowrap.asm"
  14.  
  15. code_beg:
  16.             macro       testname
  17.             db          "MEMPTR"
  18.             endm
  19.  
  20. maskflags   equ         0
  21. onlyflags   equ         1
  22. postccf     equ         0
  23. memptr      equ         1
  24.  
  25.                 DISP    DST_ADDR
  26.                 include     main.asm
  27.                 ENT
  28. code_end:
  29.  
  30. cmd_end:
  31.  
  32.         savebin "z80memptr.com",cmd_begin,cmd_end-cmd_begin
  33.  
  34.  
  35. ; EOF ;
  36.