Subversion Repositories NedoOS

Rev

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

  1. ; The Z80 tester.
  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.  
  7. opsize      equ     4+postccf       ; Size of the tested instruction sequence.
  8. datasize    equ     16              ; Size of the tested registers and data.
  9. vecsize     equ     opsize+datasize ; Size of entire test vector.
  10.  
  11. test:      
  12.             ld      (.spptr+1),sp
  13.  
  14.             if      maskflags       ; Keep mask for official flags.
  15.             ld      a,(hl)          
  16.             ld      (.flagptr+1),a
  17.             endif
  18.  
  19.             inc     hl
  20.  
  21.             ld      de,vector       ; Init the test vector, counter and shifter.
  22.             ld      bc,vecsize
  23.             call    .copy
  24.  
  25.             add     hl,bc
  26.  
  27.             call    .copy
  28.  
  29.             call    .copy
  30.            
  31.             add     hl,bc
  32.  
  33.             ld      (.valptr+1),de
  34.  
  35.             inc     de
  36.  
  37.             call    .clear
  38.  
  39.             ld      (.maskptr+1),de
  40.  
  41.             xor     a
  42.             ld      (de),a
  43.             inc     de
  44.  
  45.             call    .copy
  46.            
  47.             ld      a,0x07          ; Make sure we get 0
  48.             out     (0xfe),a        ; on MIC bit when doing IN.
  49.  
  50.             ld      a,0xa9          ; Set I,R,AF' to known values.
  51.             ld      i,a
  52.             ld      r,a
  53.             or      a
  54.             ex      af,af
  55.  
  56.             ld      bc,65535        ; Init CRC.
  57.             ld      d,b
  58.             ld      e,c
  59.             exx
  60.  
  61.             ld      sp,data.regs
  62.  
  63.             ; Test vector sequence combinator.
  64.  
  65. .loop       ld      hl,counter
  66.             ld      de,shifter+1
  67.             ld      bc,vector
  68.            
  69.             macro   combine base,count,offset,last
  70. .COUNT=0
  71.             dup     count
  72.             ld      a,(bc)
  73.             xor     (hl)
  74.             ex      de,hl
  75.             xor     (hl)
  76.             ;ld      (base+offset+@#),a
  77.             ld      (base+offset+.COUNT),a
  78.             ;if      ( @# < count-1 ) | ! last
  79.             if      ( .COUNT < count-1 ) | ! last
  80.             inc     c
  81.             inc     e
  82.             inc     l
  83.             endif
  84. .COUNT=.COUNT+1
  85.             edup
  86.             endm
  87.  
  88.             ld      a,(bc)
  89.             xor     (hl)
  90.             ex      de,hl
  91.             xor     (hl)
  92.             cp      0x76        ; Skip halt.
  93.             jp      z,.next
  94.             ld      (.opcode),a
  95.             inc     c
  96.             inc     e
  97.             inc     l
  98.  
  99.             ld      a,(bc)
  100.             xor     (hl)
  101.             ex      de,hl
  102.             xor     (hl)
  103.             ld      (.opcode+1),a
  104.             cp      0x76        ; Skip halt...
  105.             jp      nz,.ok
  106.             ld      a,(.opcode)
  107.             and     0xdf        ; ... with IX/IY prefix.
  108.             cp      0xdd
  109.             jp      z,.next
  110. .ok         inc     c
  111.             inc     e
  112.             inc     l
  113.  
  114.             combine .opcode,opsize-2,2,0
  115.             combine data,datasize,0,1
  116.  
  117.             ; The test itself.
  118.  
  119.             pop     af
  120.             pop     bc
  121.             pop     de
  122.             pop     hl
  123.             pop     ix
  124.             pop     iy
  125.             ld      sp,(data.sp)
  126.  
  127. .opcode     ds      opsize
  128. .continue
  129.             if      memptr
  130.             ld      hl,data
  131.             bit     0,(hl)
  132.             endif
  133.  
  134.             ld      (data.sp),sp
  135.             ld      sp,data.regstop
  136.             push    iy
  137.             push    ix
  138.             push    hl
  139.             push    de
  140.             push    bc
  141.             push    af
  142.            
  143.             ld      hl,data
  144.  
  145.             if      maskflags
  146.             ld      a,(hl)
  147. .flagptr    and     0xff
  148.  
  149.             if      ! onlyflags
  150.             ld      (hl),a
  151.             endif
  152.  
  153.             endif
  154.  
  155.             ; CRC update.
  156.  
  157.             if      ! onlyflags
  158.             ld      b,datasize
  159.             endif
  160.  
  161.             if      ! ( onlyflags & maskflags )
  162. .crcloop    ld      a,(hl)
  163.             endif
  164.  
  165.             exx
  166.             xor     e
  167.  
  168.             ld      l,a
  169.             ld      h,crctable/256
  170.            
  171.             ld      a,(hl)
  172.             xor     d
  173.             ld      e,a
  174.             inc     h
  175.  
  176.             ld      a,(hl)
  177.             xor     c
  178.             ld      d,a
  179.             inc     h
  180.  
  181.             ld      a,(hl)
  182.             xor     b
  183.             ld      c,a
  184.             inc     h
  185.  
  186.             ld      b,(hl)
  187.  
  188.             exx
  189.  
  190.             if      ! onlyflags
  191.             inc     hl
  192.             djnz    .crcloop
  193.             endif
  194.  
  195.             ; Multibyte counter with arbitrary bit mask.
  196.  
  197. .next       ld      hl,countmask
  198.             ld      de,counter
  199.             ld      b,vecsize
  200. .countloop  ld      a,(de)
  201.             or      a
  202.             jr      z,.countnext
  203.             dec     a
  204.             and     (hl)
  205.             ld      (de),a
  206.             jp      .loop
  207. .countnext  ld      a,(hl)
  208.             ld      (de),a
  209.             inc     l
  210.             inc     e
  211.             djnz    .countloop
  212.  
  213.             ; Multibyte shifter with arbitrary bit mask.
  214.  
  215. .maskptr    ld      hl,shiftmask
  216. .valptr     ld      de,shifter
  217.             ld      a,(de)
  218.             add     a,a
  219.             neg
  220.             add     (hl)
  221.             xor     (hl)
  222.             and     (hl)
  223.             ld      (de),a
  224.             jp      nz,.loop
  225. .shiftloop  inc     l
  226.             inc     e
  227.             ld      a,e
  228.             cp      shiftend % 256
  229.             jr      z,.exit
  230.             ld      a,(hl)
  231.             dec     a
  232.             xor     (hl)
  233.             and     (hl)
  234.             jr      z,.shiftloop
  235.             ld      (de),a
  236.             ld      (.maskptr+1),hl
  237.             ld      (.valptr+1),de
  238.             jp      .loop
  239.  
  240. .exit       exx
  241. .spptr      ld      sp,0
  242.             ret
  243.  
  244.             ; Misc helper routines.
  245.  
  246. .copy       push    hl
  247.             push    bc
  248.             ldir
  249.             pop     bc
  250.             pop     hl
  251.             ret
  252.  
  253. .clear      push    hl
  254.             push    bc
  255.             ld      h,d
  256.             ld      l,e
  257.             ld      (hl),0
  258.             inc     de
  259.             dec     bc
  260.             ldir
  261.             pop     bc
  262.             pop     hl
  263.             ret
  264.  
  265.             align   256
  266.  
  267.             include crctab.asm
  268.  
  269. ; If this moves from 0x8800, all tests which use this address
  270. ; will need to have their CRCs updated, so don't move it.
  271.  
  272.             align   256
  273. data
  274. .regs       ds      datasize-4
  275. .regstop
  276. .mem        ds      2
  277. .sp         ds      2
  278.  
  279. .jump
  280.             if      postccf
  281.             ccf
  282.             else
  283.             inc     bc
  284.             endif
  285.             jp      test.continue
  286.  
  287. ; This entire workspace must be kept within single 256 byte page.
  288.  
  289. vector      ds      vecsize
  290. counter     ds      vecsize
  291. countmask   ds      vecsize
  292. shifter     ds      1+vecsize
  293. shiftend
  294. shiftmask   ds      1+vecsize
  295.  
  296. ; EOF ;
  297.