From d71b4c13c557e9ca6746389c3ed0aedd2dd91ea7 Mon Sep 17 00:00:00 2001 From: AJR Date: Fri, 31 May 2019 16:49:29 -0400 Subject: systel100: Found the switch (nw) --- src/mame/drivers/systel1.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/mame/drivers/systel1.cpp b/src/mame/drivers/systel1.cpp index d6dd3b4ec03..57bff138ba0 100644 --- a/src/mame/drivers/systel1.cpp +++ b/src/mame/drivers/systel1.cpp @@ -6,8 +6,7 @@ This minimalistic luggable computer has a green-screen monitor and 5ΒΌ-inch floppy drive (Shugart SA455) built into the unit. The detached - keyboard may be replaced with a standard electric typewriter. There is - a TYPE/WP switch on the front of the unit. + keyboard may be replaced with a standard electric typewriter. ***************************************************************************/ @@ -144,8 +143,11 @@ void systel1_state::io_map(address_map &map) } static INPUT_PORTS_START(systel1) - PORT_START("JUMPERS") // probably at J6 - PORT_DIPNAME(0x02, 0x00, "Screen Refresh") + PORT_START("JUMPERS") + PORT_DIPNAME(0x01, 0x00, "System Mode") // TYPE/WP switch on the front of the unit + PORT_DIPSETTING(0x01, "Typewriter") + PORT_DIPSETTING(0x00, "Word Processor") + PORT_DIPNAME(0x02, 0x00, "Screen Refresh") // probably at J6 PORT_DIPSETTING(0x02, "50 Hz") PORT_DIPSETTING(0x00, "60 Hz") INPUT_PORTS_END -- cgit v1.2.3