Rewrote the disc sector poller again for simplified code and more accuracy;

Floppy formats are now accurately timed and also more accurately implemented;
Applied all mainline PCem commits.
This commit is contained in:
OBattler
2016-08-20 03:40:12 +02:00
parent 24a6ab13fb
commit a924f37f43
51 changed files with 2471 additions and 1302 deletions

View File

@@ -125,9 +125,9 @@ uint8_t keyboard_xt_read(uint16_t port, void *priv)
if (romset == ROM_IBMPC)
{
if (keyboard_xt.pb & 0x04)
temp = 0x02;
temp = ((mem_size-64) / 32) & 0xf;
else
temp = 0x01;
temp = ((mem_size-64) / 32) >> 4;
}
else
{