1
0
Fork 0

port 61 xors bit 4 on and off during reads

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1451
This commit is contained in:
Sjoerd van der Berg 2003-11-18 22:32:13 +00:00
parent 27fd691fff
commit b91359610a

View file

@ -197,6 +197,7 @@ static void write_p60(Bit32u port,Bit8u val) {
static Bit8u read_p61(Bit32u port) {
port_61_data^=0x20;
port_61_data^=0x10;
return port_61_data;
}