summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tabe22.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tabe22.cpp')
-rw-r--r--src/mame/drivers/tabe22.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/drivers/tabe22.cpp b/src/mame/drivers/tabe22.cpp
index 35524d15c9e..e075a67d185 100644
--- a/src/mame/drivers/tabe22.cpp
+++ b/src/mame/drivers/tabe22.cpp
@@ -8,22 +8,22 @@
Hardware:
- P8085AH
- - SCN2674B with SCB2675T
+ - SCN2674B with SCB2675T
- SCN2681
- P8251A
- 3x HM6264LP-12 (8k)
- 3x HM6116LP-2 (2k)
- - XTAL: 3.6864 MHz, 10.0000 MHz, 21.7566 MHz, 35.8344 MHz
+ - XTAL: 3.6864 MHz, 10.0000 MHz, 21.7566 MHz, 35.8344 MHz
TODO:
- Dump keyboard controller and emulate it (currently HLE'd)
- - NVRAM / memory layout
- - Needs a hack to send out data on the RS232 port:
- Set $f7a3 = 0 after startup
+ - NVRAM / memory layout
+ - Needs a hack to send out data on the RS232 port:
+ Set $f7a3 = 0 after startup
Notes:
- - The hardware has some similarities to cit220.cpp
- - Everything here is guessed (including the system name), no docs available
+ - The hardware has some similarities to cit220.cpp
+ - Everything here is guessed (including the system name), no docs available
***************************************************************************/
@@ -257,12 +257,12 @@ void tabe22_state::tabe22(machine_config &config)
m_vram_bank->set_data_width(8);
m_vram_bank->set_stride(0x1000);
-// NVRAM(config, "nvram", nvram_device::DEFAULT_ALL_0);
+// NVRAM(config, "nvram", nvram_device::DEFAULT_ALL_0);
SCREEN(config, m_screen, SCREEN_TYPE_RASTER);
m_screen->set_color(rgb_t::amber());
m_screen->set_raw(21.7566_MHz_XTAL, 918, 0, 720, 395, 0, 378); // 80 column mode
-// m_screen->set_raw(35.8344_MHz_XTAL, 1494, 0, 1188, 395, 0, 378); // 132 column mode
+// m_screen->set_raw(35.8344_MHz_XTAL, 1494, 0, 1188, 395, 0, 378); // 132 column mode
m_screen->set_screen_update(m_avdc, FUNC(scn2674_device::screen_update));
PALETTE(config, m_palette, FUNC(tabe22_state::palette), 4);