Removed more excess logging.

This commit is contained in:
OBattler
2021-04-11 08:30:46 +02:00
parent 00f722bdf5
commit 7aac3a3d21
2 changed files with 0 additions and 4 deletions

View File

@@ -29,7 +29,6 @@ static void opSVDC_common(uint32_t fetchdat)
writememw(0, easeg+cpu_state.eaaddr+8, GS);
break;
default:
pclog("opSVDC: unknown rmdat %02x\n", rmdat);
x86illegal();
}
}
@@ -80,7 +79,6 @@ static void opRSDC_common(uint32_t fetchdat)
cyrix_load_seg_descriptor(easeg+cpu_state.eaaddr, &cpu_state.seg_gs);
break;
default:
pclog("opRSDC: unknown rmdat %02x\n", rmdat);
x86illegal();
}
}

View File

@@ -2424,6 +2424,4 @@ cyrix_load_seg_descriptor(uint32_t addr, x86seg *seg)
codegen_flat_ss = 0;
}
}
pclog("clsd(): NEW CS:IP = %04X:%08X (%08X)\n", CS, cpu_state.pc, cs + cpu_state.pc);
}