Subversion Repositories pentevo

Rev

Blame | Last modification | View Log | Download | RSS feed | ?url?

  1.         cpu     z80
  2.  
  3. x1      equ     1
  4. x3      equ     3
  5.  
  6.         if      defined(x1) || defined(x2)
  7.         db      12h
  8.         endif
  9.  
  10.         if      defined(x1) || defined(x3)
  11.         db      13h
  12.         endif
  13.  
  14.         if      defined(x1) || defined(x4)
  15.         db      14h
  16.         endif
  17.  
  18.         if      defined(x2) || defined(x3)
  19.         db      23h
  20.         endif
  21.  
  22.         if      defined(x2) || defined(x4)
  23.         db      24h
  24.         endif
  25.  
  26.         if      defined(x3) || defined(x4)
  27.         db      34h
  28.         endif
  29.