Skip to content
Snippets Groups Projects
Commit 866b3376 authored by Ove Kåven's avatar Ove Kåven Committed by Alexandre Julliard
Browse files

Added port 0x60 for int 0x09, and port 0x20 for PIC handling.

parent 4dfd8592
No related branches found
No related tags found
No related merge requests found
......@@ -321,7 +321,10 @@ DWORD IO_inport( int port, int size )
break;
}
case 0x60:
res = INT_Int09ReadScan();
#if 0 /* what's this port got to do with parport ? */
res = (DWORD)parport_8255[0];
#endif
break;
case 0x61:
res = (DWORD)parport_8255[1];
......@@ -382,6 +385,9 @@ void IO_outport( int port, int size, DWORD value )
case 0x3c9:
VGA_ioport_out( port, (BYTE)value );
break;
case 0x20:
DOSVM_PIC_ioport_out( port, (BYTE)value );
break;
case 0x40:
case 0x41:
case 0x42:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment