summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hh_tms1k.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hh_tms1k.cpp')
-rw-r--r--src/mame/drivers/hh_tms1k.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/hh_tms1k.cpp b/src/mame/drivers/hh_tms1k.cpp
index a201672c98f..ffa4a7e0b24 100644
--- a/src/mame/drivers/hh_tms1k.cpp
+++ b/src/mame/drivers/hh_tms1k.cpp
@@ -669,7 +669,7 @@ MACHINE_CONFIG_END
Coleco Zodiac - The Astrology Computer
* TMS1100 MP3435 (no decap)
* 8-digit 7seg display, 12 other LEDs, 1-bit sound
-
+
As the name suggests, this is an astrologic calculator. Refer to the
(very extensive) manual on how to use it.
@@ -858,7 +858,7 @@ void cqback_state::prepare_display()
UINT16 seg = m_o;
if (m_r & 0x200)
seg = (m_o << 7 & 0x300) | (m_o & 0xf9);
-
+
set_display_segmask(0x1ff, 0xff);
display_matrix(11, 9, seg, m_r & 0x1ff);
}
@@ -1351,7 +1351,7 @@ MACHINE_CONFIG_END
Conic Electronic Football II
* TMS1100 MP1181 (no decap)
* 9-digit LED grid, 1-bit sound
-
+
This is a clone of Coleco's Quarterback, similar at hardware-level too.
It was also sold by Tandy under the same title.
@@ -1378,7 +1378,7 @@ void cnfball2_state::prepare_display()
UINT16 seg = m_o;
if (~m_r & 2)
seg = (m_o << 7 & 0x300) | (m_o & 0xf9);
-
+
set_display_segmask(0x1ff, 0xff);
display_matrix(11, 9, seg, m_r >> 1 & 0x1ff);
}
@@ -1390,7 +1390,7 @@ WRITE16_MEMBER(cnfball2_state::write_r)
// R8-R10: input mux
m_inp_mux = data >> 8 & 7;
-
+
// R1-R10: select digit/segment
m_r = data;
prepare_display();
@@ -4397,7 +4397,7 @@ MACHINE_CONFIG_END
Featuring The Electronic Dive-Control Center
* TMS1100 M34038-NLL (die labeled 1100E, M34038)
* 11 LEDs, 4-bit sound
-
+
This is a board game. The electronic accessory is the emulated part here.
***************************************************************************/