Explorar el Código

Fix some broken timing.

master
Ben Kurtovic hace 8 años
padre
commit
42b09e5b93
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      src/z80_ops.inc.c

+ 2
- 2
src/z80_ops.inc.c Ver fichero

@@ -1349,7 +1349,7 @@ static uint8_t z80_inst_inc_xy(Z80 *z80, uint8_t opcode)
(void) opcode;
(*z80->regs.ixy)++;
z80->regs.pc++;
return 6;
return 10;
}

/*
@@ -1372,7 +1372,7 @@ static uint8_t z80_inst_dec_xy(Z80 *z80, uint8_t opcode)
(void) opcode;
(*z80->regs.ixy)--;
z80->regs.pc++;
return 6;
return 10;
}

/*


Cargando…
Cancelar
Guardar