Diff for /xmil/z80x/z80xmem.x86 between versions 1.1 and 1.2

version 1.1, 2004/08/01 05:31:32 version 1.2, 2004/08/11 16:09:04
Line 9  section .bss Line 9  section .bss
   
 section .text  section .text
   
         global  @memrd8_ecx_al@4          global  @z80mem_read8@4
         global  @memwr8_ecx_dl@8          global  @z80mem_write8@8
   
         global  lea_ecx_ecx          global  lea_ecx_ecx
         global  memfetch          global  memfetch
Line 40  memfetch:  cmp  ecx, 8000h Line 40  memfetch:  cmp  ecx, 8000h
                                 ret                                  ret
   
                                 align   16                                  align   16
 @memrd8_ecx_al@4:  @z80mem_read8@4:
 memrd8_ecx_al:  cmp             ecx, 8000h  memrd8_ecx_al:  cmp             ecx, 8000h
                                 jc              short .low                                  jc              short .low
                                 mov             al, [_mMAIN + ecx]                                  mov             al, [_mMAIN + ecx]
Line 59  memrd8_ecx_dl: cmp  ecx, 8000h Line 59  memrd8_ecx_dl: cmp  ecx, 8000h
                                 ret                                  ret
   
                                 align   16                                  align   16
 @memwr8_ecx_dl@8:  @z80mem_write8@8:
 memwr8_ecx_dl:  cmp             ecx, 8000h  memwr8_ecx_dl:  cmp             ecx, 8000h
                                 jc              short .low                                  jc              short .low
                                 mov             [_mMAIN + ecx], dl                                  mov             [_mMAIN + ecx], dl

Removed from v.1.1  
changed lines
  Added in v.1.2


RetroPC.NET-CVS <cvs@retropc.net>