summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/c10.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/c10.cpp')
-rw-r--r--src/mame/drivers/c10.cpp24
1 files changed, 14 insertions, 10 deletions
diff --git a/src/mame/drivers/c10.cpp b/src/mame/drivers/c10.cpp
index 7128a632e2f..b0cf1d5b62f 100644
--- a/src/mame/drivers/c10.cpp
+++ b/src/mame/drivers/c10.cpp
@@ -1,16 +1,20 @@
// license:BSD-3-Clause
// copyright-holders:Robbbert
-/***************************************************************************
+/*****************************************************************************************************
- Cromemco C-10 Personal Computer
+Cromemco C-10 Personal Computer
- 30/08/2010 Skeleton driver
+2010-08-30 Skeleton driver
- Driver currently gets to a loop where it waits for an interrupt.
- The interrupt routine presumably writes to FE69 which the loop is
- constantly looking at.
+Photos show: Intersil 74954-1, Mostek MK3880N-4 (Z80A), CROMEMCO 011-0082-01, CROMEMCO 011-0095,
+ Intel P8275-2, AM92128BPC (16K ROM), NEC D8257C-5, CROMEMCO 011-0083, WDC FD1793B-02,
+ 2x 8251. Crystals: 8MHz, 13.028MHz
-****************************************************************************/
+Driver currently gets to a loop where it waits for an interrupt.
+The interrupt routine presumably writes to FE69 which the loop is
+constantly looking at.
+
+*****************************************************************************************************/
#include "emu.h"
#include "cpu/z80/z80.h"
@@ -151,7 +155,7 @@ GFXDECODE_END
static MACHINE_CONFIG_START( c10 )
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", Z80, XTAL_16MHz / 4)
+ MCFG_CPU_ADD("maincpu", Z80, XTAL_8MHz / 2)
MCFG_CPU_PROGRAM_MAP(c10_mem)
MCFG_CPU_IO_MAP(c10_io)
@@ -176,10 +180,10 @@ DRIVER_INIT_MEMBER(c10_state,c10)
/* ROM definition */
ROM_START( c10 )
ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASEFF )
- ROM_LOAD( "c10_cros.bin", 0x8000, 0x4000, CRC(2ccf5983) SHA1(52f7c497f5284bf5df9eb0d6e9142bb1869d8c24))
+ ROM_LOAD( "502-0055.ic16", 0x8000, 0x4000, CRC(2ccf5983) SHA1(52f7c497f5284bf5df9eb0d6e9142bb1869d8c24))
ROM_REGION( 0x2000, "chargen", 0 )
- ROM_LOAD( "c10_char.bin", 0x0000, 0x2000, CRC(cb530b6f) SHA1(95590bbb433db9c4317f535723b29516b9b9fcbf))
+ ROM_LOAD( "c10_char.ic9", 0x0000, 0x2000, CRC(cb530b6f) SHA1(95590bbb433db9c4317f535723b29516b9b9fcbf))
ROM_END
/* Driver */