Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a432ce86
Commit
a432ce86
authored
Mar 25, 2020
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
krnl386: Get rid of DOS Soundblaster support.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7f2aef05
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
15 deletions
+1
-15
Makefile.in
dlls/krnl386.exe16/Makefile.in
+1
-2
dosexe.h
dlls/krnl386.exe16/dosexe.h
+0
-4
ioports.c
dlls/krnl386.exe16/ioports.c
+0
-9
soundblaster.c
dlls/krnl386.exe16/soundblaster.c
+0
-0
No files found.
dlls/krnl386.exe16/Makefile.in
View file @
a432ce86
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
\
...
...
dlls/krnl386.exe16/dosexe.h
View file @
a432ce86
...
...
@@ -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 */
dlls/krnl386.exe16/ioports.c
View file @
a432ce86
...
...
@@ -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
:
...
...
dlls/krnl386.exe16/soundblaster.c
deleted
100644 → 0
View file @
7f2aef05
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment