Skip to content

Commit

Permalink
tk80.cpp: Correct clocks and CPU type for nectk85 (nw)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrhacker committed Oct 17, 2017
1 parent 8f0d2b5 commit f61a717
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/mame/drivers/tk80.cpp
Expand Up @@ -14,8 +14,8 @@ TK80 (Training Kit 80) considered to be Japan's first home computer.
It consisted of 25 keys and 8 LED digits, and was programmed in hex.
The Mikrolab is a Russian clone which appears to be almost completely identical.
TK85 seems to be the same as TK80, except is has a larger ROM. No
schematics etc are available. Thanks to 'Nama' who dumped the rom.
TK85 seems to be the same as TK80, except it has a 8085 and a larger ROM.
No schematics etc are available. Thanks to 'Nama' who dumped the rom.
It has 25 keys, so a few aren't defined yet.
ND-80Z : http://www.alles.or.jp/~thisida/nd80z3syokai.html (newer version)
Expand Down Expand Up @@ -250,7 +250,7 @@ WRITE8_MEMBER( tk80_state::mikrolab_serial_w )

static MACHINE_CONFIG_START( tk80 )
/* basic machine hardware */
MCFG_CPU_ADD("maincpu",I8080, XTAL_1MHz) // 18.432 / 9
MCFG_CPU_ADD("maincpu", I8080A, XTAL_18_432MHz / 9)
MCFG_CPU_PROGRAM_MAP(tk80_mem)
MCFG_CPU_IO_MAP(tk80_io)

Expand Down Expand Up @@ -293,8 +293,9 @@ static MACHINE_CONFIG_START( nd80z )
MACHINE_CONFIG_END

static MACHINE_CONFIG_DERIVED( tk85, tk80 )
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_REPLACE("maincpu", I8085A, XTAL_4_9152MHz)
MCFG_CPU_PROGRAM_MAP(tk85_mem)
MCFG_CPU_IO_MAP(tk80_io)
MACHINE_CONFIG_END

static MACHINE_CONFIG_DERIVED( ics8080, tk80 )
Expand Down

0 comments on commit f61a717

Please sign in to comment.