Skip to content

Commit cb35426

Browse files
authored
gaelco/gaelcopc.cpp: Add note about Tuning Race I/O board, reformat comments (#12521)
1 parent 8472b08 commit cb35426

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

src/mame/gaelco/gaelcopc.cpp

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// license:BSD-3-Clause
2-
// copyright-holders:David Haywood
2+
// copyright-holders: David Haywood
3+
34
/* Gaelco PC based hardware
45
56
TODO:
@@ -68,8 +69,8 @@ INPUT_PORTS_END
6869

6970
void gaelcopc_state::gaelcopc(machine_config &config)
7071
{
71-
/* basic machine hardware */
72-
// bios mentions Socket 370, so at very least a Celeron or a Pentium 3 class CPU
72+
// basic machine hardware
73+
// BIOS mentions Socket 370, so at very least a Celeron or a Pentium 3 class CPU
7374
// TODO: lowered rate for debugging aid, needs a slot option anyway
7475
PENTIUM3(config, m_maincpu, 100'000'000);
7576
m_maincpu->set_addrmap(AS_PROGRAM, &gaelcopc_state::gaelcopc_map); // TODO: remove me
@@ -81,7 +82,7 @@ void gaelcopc_state::gaelcopc(machine_config &config)
8182
// TODO: All of the provided BIOSes just have different ACFG table configs at $10000, investigate
8283

8384
ROM_START(tokyocop)
84-
ROM_REGION32_LE(0x80000, "bios", 0) /* motherboard bios */
85+
ROM_REGION32_LE(0x80000, "bios", 0) // motherboard BIOS
8586
// $40 Award 6.00 PG 12/19/2002
8687
// $7413c Intel 815 Hardware version v0.0 08/13/1999
8788
ROM_SYSTEM_BIOS(0, "default", "v0.0 08/13/1999")
@@ -99,7 +100,7 @@ tested working on the real hardware. It uses the same hardware and bios as the k
99100
ROM_END
100101

101102
ROM_START(tokyocopk)
102-
ROM_REGION32_LE(0x80000, "bios", 0) /* motherboard bios */
103+
ROM_REGION32_LE(0x80000, "bios", 0) // motherboard BIOS
103104
// $40 6.00 PG 12/19/2002
104105
// $7413c v0.0 08/13/1999
105106
ROM_LOAD("al1.u10", 0x000000, 0x80000, CRC(e426e030) SHA1(52bdb6d46c12150077169ac3add8c450326ad4af) )
@@ -109,7 +110,7 @@ ROM_START(tokyocopk)
109110
ROM_END
110111

111112
ROM_START(tokyocopi)
112-
ROM_REGION32_LE(0x80000, "bios", 0) /* motherboard bios */
113+
ROM_REGION32_LE(0x80000, "bios", 0) // motherboard BIOS
113114
// Not specifically provided, assume "works right" with same BIOS.
114115
ROM_LOAD("al1.u10", 0x000000, 0x80000, CRC(e426e030) SHA1(52bdb6d46c12150077169ac3add8c450326ad4af) )
115116

@@ -118,7 +119,7 @@ ROM_START(tokyocopi)
118119
ROM_END
119120

120121
ROM_START(rriders)
121-
ROM_REGION32_LE(0x80000, "bios", 0) /* motherboard bios */
122+
ROM_REGION32_LE(0x80000, "bios", 0) // motherboard BIOS
122123
// $40 6.00 PG 12/19/2002
123124
// $7413c v0.0 08/13/1999
124125
ROM_LOAD("22-03.u10", 0x000000, 0x80000, CRC(0ccae12f) SHA1(a8878fa73d5a4f5e9b6e3f35994fddea08cd3c2d) )
@@ -127,8 +128,9 @@ ROM_START(rriders)
127128
DISK_IMAGE( "rriders", 0, SHA1(46e10517ee1b383e03c88cac67a54318c227e3e1) )
128129
ROM_END
129130

131+
// Gaelco I/O card "REF. 050210" (Altera Cyclone EP1C3T144C8, AD9288...)
130132
ROM_START(tuningrc)
131-
ROM_REGION32_LE(0x80000, "bios", 0) /* motherboard bios */
133+
ROM_REGION32_LE(0x80000, "bios", 0) // motherboard BIOS
132134
// $40 6.00 PG 12/19/2002
133135
// $7413c v0.0 08/13/1999
134136
ROM_LOAD("310j.u10", 0x000000, 0x80000, CRC(70b0797a) SHA1(696f602e83359d5d36798d4d2962ee85171e3622) )

0 commit comments

Comments
 (0)