diff options
author | 2017-01-19 20:17:50 +0000 | |
---|---|---|
committer | 2017-01-19 20:17:50 +0000 | |
commit | 463df706e6f55cd7ee311a595242ee3524ad6177 (patch) | |
tree | e168ef19890a4094c7b222d5ed39b442a31a9710 /src/devices/machine/i8251.cpp | |
parent | 48073dbf0300572655281a185b009ae11420f11d (diff) |
fixed building with visual studio (nw)
Diffstat (limited to 'src/devices/machine/i8251.cpp')
-rw-r--r-- | src/devices/machine/i8251.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/machine/i8251.cpp b/src/devices/machine/i8251.cpp index 6eac8fd3c52..2c33c6decb3 100644 --- a/src/devices/machine/i8251.cpp +++ b/src/devices/machine/i8251.cpp @@ -482,6 +482,7 @@ WRITE8_MEMBER(i8251_device::mode_w) switch ((data >> 6) & 0x03) { case 0: + default: stop_bits = STOP_BITS_0; LOG("stop bit: inhibit\n"); break; |