Serial ports¶
DOSBox Staging emulates four COM (serial) ports, the same ones DOS programs used for modems, serial mice, and direct cable connections.
The most common use case is modem multiplayer. Setting a serial port to
modem mode turns your internet connection into a virtual phone line —
dial-up multiplayer without the phone bill. Games like
Doom,
Rise of the Triad,
and Terminal Velocity
all supported modem play, and this is how you’d get them talking to each
other today.
For a direct two-player link, nullmodem mode connects two DOSBox
instances over TCP without emulating the modem handshake. This is the
simplest way to get head-to-head play working.
You can also attach a serial mouse to a COM port for the rare game that specifically requires one, rather than using the built-in PS/2 mouse driver.
For setting up multiplayer games over serial connections, see the Multiplayer chapter.
Configuration settings¶
You can set the serial port parameters in the [serial] configuration
section.
phonebookfile¶
- File used to map fake phone numbers to addresses (
phonebook.txtby default).
serial1¶
-
Set type of device connected to the COM1 port.
Possible values:
dummydefault – Emulate the port without a device attached to it.disabled– Disable the port.mouse– Emulate a serial mouse attached to the port.modem– Emulate a modem attached to the port.nullmodem– Emulate a null modem attached to the port.direct– Emulate a direct serial link.
Additional parameters must be on the same line in the form of
PARAMETER:VALUE. The optionalirqparameter is common for all types. Available parameters:- For
mouse:model(optional; overrides thecom_mouse_modelsetting). - For
direct:realport(required),rxdelay(optional). E.g.,realport:COM1,realport:ttyS0. - For
modem:listenport,sock,bps(all optional). - For
nullmodem:server,rxdelay,txdelay,telnet,usedtr,transparent,port,inhsocket,sock(all optional).
The
sockparameter specifies the protocol to use at both sides of the connection. Valid values are0for TCP, and1for ENet reliable UDP. Example:serial1 = modem listenport:5000 sock:1
serial2¶
- See serial1 (
dummyby default).
serial3¶
- See serial1 (
disabledby default).
serial4¶
- See serial1 (
disabledby default).