home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / new / misc / emu / z80 / tables.i < prev    next >
Text File  |  1993-12-21  |  860b  |  32 lines

  1. ** Various tables.
  2.  
  3.     IFD VERBOSE
  4.     LIST
  5. ** Compiling the tables.i file.
  6.     NOLIST
  7.     ENDC
  8.  
  9. ** The parity translation table:
  10.  
  11.     ;Odd - P/V reset. Even - set.
  12.     ;V is bit 1 of CCR, so OR with $02 or $00.
  13.     ;Bit 1 of destination must be reset first.
  14.  
  15. ParityTable
  16.     dc.b    2,0,0,2,0,2,2,0,0,2,2,0,2,0,0,2
  17.     dc.b    0,2,2,0,2,0,0,2,2,0,0,2,0,2,2,0
  18.     dc.b    0,2,2,0,2,0,0,2,2,0,0,2,0,2,2,0
  19.     dc.b    2,0,0,2,0,2,2,0,0,2,2,0,2,0,0,2
  20.     dc.b    0,2,2,0,2,0,0,2,2,0,0,2,0,2,2,0
  21.     dc.b    2,0,0,2,0,2,2,0,0,2,2,0,2,0,0,2
  22.     dc.b    2,0,0,2,0,2,2,0,0,2,2,0,2,0,0,2
  23.     dc.b    0,2,2,0,2,0,0,2,2,0,0,2,0,2,2,0
  24.     dc.b    0,2,2,0,2,0,0,2,2,0,0,2,0,2,2,0
  25.     dc.b    2,0,0,2,0,2,2,0,0,2,2,0,2,0,0,2
  26.     dc.b    2,0,0,2,0,2,2,0,0,2,2,0,2,0,0,2
  27.     dc.b    0,2,2,0,2,0,0,2,2,0,0,2,0,2,2,0
  28.     dc.b    2,0,0,2,0,2,2,0,0,2,2,0,2,0,0,2
  29.     dc.b    0,2,2,0,2,0,0,2,2,0,0,2,0,2,2,0
  30.     dc.b    0,2,2,0,2,0,0,2,2,0,0,2,0,2,2,0
  31.     dc.b    2,0,0,2,0,2,2,0,0,2,2,0,2,0,0,2
  32.