Added port 0x60 for int 0x09, and port 0x20 for PIC handling.
This commit is contained in:
parent
4dfd859271
commit
866b3376a5
@ -321,7 +321,10 @@ DWORD IO_inport( int port, int size )
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 0x60:
|
case 0x60:
|
||||||
|
res = INT_Int09ReadScan();
|
||||||
|
#if 0 /* what's this port got to do with parport ? */
|
||||||
res = (DWORD)parport_8255[0];
|
res = (DWORD)parport_8255[0];
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
case 0x61:
|
case 0x61:
|
||||||
res = (DWORD)parport_8255[1];
|
res = (DWORD)parport_8255[1];
|
||||||
@ -382,6 +385,9 @@ void IO_outport( int port, int size, DWORD value )
|
|||||||
case 0x3c9:
|
case 0x3c9:
|
||||||
VGA_ioport_out( port, (BYTE)value );
|
VGA_ioport_out( port, (BYTE)value );
|
||||||
break;
|
break;
|
||||||
|
case 0x20:
|
||||||
|
DOSVM_PIC_ioport_out( port, (BYTE)value );
|
||||||
|
break;
|
||||||
case 0x40:
|
case 0x40:
|
||||||
case 0x41:
|
case 0x41:
|
||||||
case 0x42:
|
case 0x42:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user