Commit a432ce86 authored by Alexandre Julliard's avatar Alexandre Julliard

krnl386: Get rid of DOS Soundblaster support.

parent 7f2aef05
MODULE = krnl386.exe16
IMPORTLIB = kernel
IMPORTS = winecrt0 kernel32 ntdll
DELAYIMPORTS = dsound user32
DELAYIMPORTS = user32
EXTRADLLFLAGS = -m16 -nodefaultlibs -Wb,--dll-name,kernel
C_SRCS = \
......@@ -30,7 +30,6 @@ C_SRCS = \
resource.c \
selector.c \
snoop.c \
soundblaster.c \
syslevel.c \
task.c \
thunk.c \
......
......@@ -255,8 +255,4 @@ extern void DOSVM_outport( int port, int size, DWORD value ) DECLSPEC_HIDDEN;
void DOSVM_RelayHandler( CONTEXT * ) DECLSPEC_HIDDEN;
void DOSVM_BuildCallFrame( CONTEXT *, DOSRELAY, LPVOID ) DECLSPEC_HIDDEN;
/* soundblaster.c */
extern void SB_ioport_out( WORD port, BYTE val ) DECLSPEC_HIDDEN;
extern BYTE SB_ioport_in( WORD port ) DECLSPEC_HIDDEN;
#endif /* __WINE_DOSEXE_H */
......@@ -837,11 +837,6 @@ DWORD DOSVM_inport( int port, int size )
case 0x201:
res = ~0U; /* no joystick */
break;
case 0x22a:
case 0x22c:
case 0x22e:
res = (DWORD)SB_ioport_in( port );
break;
case 0x00:
case 0x01:
case 0x02:
......@@ -1035,10 +1030,6 @@ void DOSVM_outport( int port, int size, DWORD value )
}
cmosimage[cmosaddress & 0x3f] = (BYTE)value;
break;
case 0x226:
case 0x22c:
SB_ioport_out( port, (BYTE)value );
break;
case 0x00:
case 0x01:
case 0x02:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment