More reorganization and finally merged the two makefiles.

This commit is contained in:
OBattler
2020-06-13 12:32:09 +02:00
parent 4e48943ad5
commit ca55e2a12a
35 changed files with 3645 additions and 4372 deletions

View File

@@ -332,8 +332,10 @@ outb(uint16_t port, uint8_t val)
if (!found) {
sub_cycles(io_delay);
#ifdef USE_DYNAREC
if (cpu_use_dynarec && (port == 0xeb))
update_tsc();
#endif
}
io_log("(%i, %i, %04i) outb(%04X, %02X)\n", in_smm, found, qfound, port, val);
@@ -425,8 +427,10 @@ outw(uint16_t port, uint16_t val)
if (!found) {
sub_cycles(io_delay);
#ifdef USE_DYNAREC
if (cpu_use_dynarec && (port == 0xeb))
update_tsc();
#endif
}
io_log("(%i, %i, %04i) outw(%04X, %04X)\n", in_smm, found, qfound, port, val);
@@ -552,8 +556,10 @@ outl(uint16_t port, uint32_t val)
if (!found) {
sub_cycles(io_delay);
#ifdef USE_DYNAREC
if (cpu_use_dynarec && (port == 0xeb))
update_tsc();
#endif
}
io_log("(%i, %i, %04i) outl(%04X, %08X)\n", in_smm, found, qfound, port, val);