mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
finalchs: company official name is Tasc anyway, not TASC (nw)
This commit is contained in:
parent
f560cef0a4
commit
8660a20178
7 changed files with 12 additions and 10 deletions
|
@ -6664,7 +6664,7 @@
|
|||
<software name="fcc">
|
||||
<description>The Final ChessCard (Eng, v0.9/v1.0)</description>
|
||||
<year>1989</year>
|
||||
<publisher>TASC</publisher>
|
||||
<publisher>Tasc</publisher>
|
||||
|
||||
<part name="cart" interface="c64_cart">
|
||||
<feature name="slot" value="fcc" />
|
||||
|
@ -6685,7 +6685,7 @@
|
|||
<software name="fccg">
|
||||
<description>The Final ChessCard (Ger, v1.3/v1.5)</description>
|
||||
<year>1990</year>
|
||||
<publisher>TASC</publisher>
|
||||
<publisher>Tasc</publisher>
|
||||
|
||||
<part name="cart" interface="c64_cart">
|
||||
<feature name="slot" value="fcc" />
|
||||
|
@ -6706,7 +6706,7 @@
|
|||
<software name="fccgo">
|
||||
<description>The Final ChessCard (Ger, v0.9/v1.0)</description>
|
||||
<year>1989</year>
|
||||
<publisher>TASC</publisher>
|
||||
<publisher>Tasc</publisher>
|
||||
|
||||
<part name="cart" interface="c64_cart">
|
||||
<feature name="slot" value="fcc" />
|
||||
|
|
|
@ -152,7 +152,7 @@
|
|||
<software name="fcc"> <!-- optional -->
|
||||
<description>The Final ChessCard</description>
|
||||
<year>1990</year>
|
||||
<publisher>TASC</publisher>
|
||||
<publisher>Tasc</publisher>
|
||||
<sharedfeat name="requirement" value="c64_cart:fcc"/>
|
||||
|
||||
<part name="flop1" interface="floppy_5_25">
|
||||
|
|
|
@ -9563,7 +9563,7 @@
|
|||
<!-- needs finalchs ISA card to work -->
|
||||
<description>The Final ChessCard</description>
|
||||
<year>1989</year>
|
||||
<publisher>TASC</publisher>
|
||||
<publisher>Tasc</publisher>
|
||||
<part name="flop1" interface="floppy_3_5">
|
||||
<dataarea name="flop" size="1474560">
|
||||
<rom name="finalchs.img" size="1474560" crc="3428d309" sha1="ea345d6828ffd9ff9be3ac4e037e80491bb7ce74"/>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// copyright-holders:Curt Coder, hap
|
||||
/**********************************************************************
|
||||
|
||||
TASC Final ChessCard cartridge emulation
|
||||
Tasc Final ChessCard cartridge emulation
|
||||
|
||||
It expects a mouse in port 2, and/or joystick in port 1.
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// copyright-holders:Curt Coder, hap
|
||||
/**********************************************************************
|
||||
|
||||
TASC Final ChessCard cartridge emulation
|
||||
Tasc Final ChessCard cartridge emulation
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
|
|
|
@ -2,12 +2,14 @@
|
|||
// copyright-holders:hap
|
||||
/*
|
||||
|
||||
Final ChessCard by TASC
|
||||
The Final ChessCard by Tasc
|
||||
|
||||
8-bit ISA card, comes with its own CPU (G65SC02P-4 @ 5MHz), and chess engine on 32KB ROM.
|
||||
It is similar to the C64 version, actually not as impressive since a PC from around 1989
|
||||
should be able to run a good chess game by itself.
|
||||
|
||||
Tasc later released The ChessMachine ISA card, not emulated yet.
|
||||
|
||||
*/
|
||||
|
||||
#include "emu.h"
|
||||
|
@ -66,7 +68,7 @@ void isa8_finalchs_device::device_reset()
|
|||
|
||||
ROM_START( finalchs )
|
||||
ROM_REGION( 0x10000, "maincpu", 0 )
|
||||
ROM_LOAD("finalchs.bin", 0x8000, 0x8000, CRC(c8e72dff) SHA1(f422b19a806cef4fadd580caefaaf8c32b644098) )
|
||||
ROM_LOAD("finalchs.bin", 0x8000, 0x8000, CRC(c8e72dff) SHA1(f422b19a806cef4fadd580caefaaf8c32b644098) ) // v2.0
|
||||
ROM_END
|
||||
|
||||
const tiny_rom_entry *isa8_finalchs_device::device_rom_region() const
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// copyright-holders:hap
|
||||
/*
|
||||
|
||||
Final ChessCard by TASC
|
||||
The Final ChessCard by Tasc
|
||||
|
||||
*/
|
||||
|
||||
|
|
Loading…
Reference in a new issue