Fixed all the reported bugs regarding the Settings dialog; MIDI out device is now no longer reset to 0 after hard reset; Removed all vestiges of the old disk activity flash; The configuration file is no longer saved when it shouldn't be; Redone the status bar icon updating so it is only done in win.c; Made sure all variables in ibm.h are extern; A lot of other bugfixes; Added Mouse Systems Mouse emulation (patch from TheCollector1995); Added IBM PS/1 Model 2133 (486) emulation (patch from TheCollector1995); Tweaked the CPU dynamic recompiler cycle periods - 486SX 33 and 486DX 33 now work; Increased compatibility with configuration files from before the previous commit.
25 lines
433 B
C
25 lines
433 B
C
/* Copyright holders: Sarah Walker
|
|
see COPYING for more details
|
|
*/
|
|
/*IBM 5150 cassette nonsense
|
|
Calls F979 twice
|
|
Expects CX to be nonzero, BX >$410 and <$540
|
|
CX is loops between bit 4 of $62 changing
|
|
BX is timer difference between calls
|
|
*/
|
|
|
|
#include "ibm.h"
|
|
#include "pit.h"
|
|
#include "plat_keyboard.h"
|
|
#include "plat_mouse.h"
|
|
|
|
PPI ppi;
|
|
int ppispeakon;
|
|
|
|
void ppi_reset()
|
|
{
|
|
ppi.pa=0x0;
|
|
ppi.pb=0x40;
|
|
}
|
|
|