-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathREADME
109 lines (73 loc) · 3.69 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
----------------------------------------
SoftMPU 1.91 - Software MPU-401 Emulator
----------------------------------------
Copyright (C) 2013-2018 bjt, elianda
Copyright (C) 2002-2013 The DOSBox Team
----------------------------------------
Release Notes (21/01/18)
WHAT IS IT?
SoftMPU is a DOS TSR that emulates an 'intelligent mode' hardware MPU-401
interface. It's designed to work in tandem with the MIDI interfaces found on
Sound Blaster and other common sound cards.
WHY'S THIS USEFUL?
Games from the late 80s and early 90s that support music via the Roland
MT-32/CM-32L often expect to find a hardware MPU-401 interface that supports
'intelligent mode'. These are now expensive and difficult to find.
By supporting the 'intelligent mode' features in software, these games will
work with the basic MIDI interfaces found on sound cards.
REQUIREMENTS
- EMM386 4.46+ (MS-DOS 6.2) or QEMM 7.03+
- Sound Blaster (or compatible) sound card (MPU-401 & SB-MIDI mode)
- Serial port (Serial MIDI mode)
USING SOFTMPU: MPU-401 & SB-MIDI MODE
Run SoftMPU specifying the base port address and interrupt of your Sound
Blaster, and the base port address of the MPU-401 interface, e.g.
SOFTMPU.EXE /SB:220 /IRQ:5 /MPU:330
The optional /OUTPUT:SBMIDI switch forces Sound Blaster MIDI to be used. This
mode is intended for use with the Sound Blaster Pro 2 and other sound cards
without a hardware MPU-401 interface. Game compatibility may be reduced.
USING SOFTMPU: SERIAL MIDI MODE
Run SoftMPU specifying the serial interface to be used and the base port
address of the MPU-401 interface, e.g.
SOFTMPU.EXE /MPU:330 /OUTPUT:COM1
A Sound Blaster base port address and IRQ can optionally be specified if
MPU-401 interrupts are required.
FURTHER OPTIONS
The optional /DELAYSYSEX switch enables small transmission delays to prevent
buffer overflow with the Rev.0 MT-32.
The optional /RA50 switch enables simulated "All Notes Off" commands for
compatibility with the Roland RA-50.
SoftMPU will remain active until the PC is restarted. It occupies
approximately 8KB and can be loaded into high memory using the LH command.
TROUBLESHOOTING
Problem: When using a PS/2 mouse, moving the cursor causes slow playback.
Solution: Use a mouse driver that supports direct hardware access e.g.
CuteMouse 2.0 (but not 2.1).
Problem: Some games expect to find an MPU interface on IRQ 2, but my sound
card doesn't support it.
Solution: Configure your sound card to use IRQ 9.
Problem: SoftMPU can't find a hardware MPU interface when using a Sound
Blaster Pro 2 or older sound card.
Solution: Run SoftMPU with the /OUTPUT:SBMIDI switch.
Problem: My Rev.0 MT-32 displays "EXC. BUFFER OVERFLOW". Music playback
sounds incorrect.
Solution: Run SoftMPU with the /DELAYSYSEX switch.
Problem: Music playback stops working after running a specific program.
Solution: Restart your PC. Software that reprograms the Real-Time Clock will
stop SoftMPU from working correctly.
FURTHER INFO
For compatibility information and serial MIDI cable pinouts, please see
http://github.com/bjt42/softmpu/wiki.
BUILDING SOFTMPU
Microsoft C 6.0A & MASM 6.11 are required (earlier versions may work, but are
untested).
The default install directories are C:\C600 and C:\MASM611. You will need to
edit BUILD.BAT if you have selected different install directories.
Run BUILD.BAT to build SOFTMPU.EXE in the current directory.
DISTRIBUTION
SoftMPU is distributed under the GNU General Public License. Please read
LICENSE for further information.
SPECIAL THANKS
- The DOSBox Team for their intelligent mode MPU-401 emulation code. SoftMPU
couldn't exist without it!
- Forum members at www.vogons.org for their encouragement and advice :)