1
1
// license:BSD-3-Clause
2
- // copyright-holders:David Haywood
2
+ // copyright-holders: David Haywood
3
+
3
4
/* Gaelco PC based hardware
4
5
5
6
TODO:
@@ -68,8 +69,8 @@ INPUT_PORTS_END
68
69
69
70
void gaelcopc_state::gaelcopc(machine_config &config)
70
71
{
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
73
74
// TODO: lowered rate for debugging aid, needs a slot option anyway
74
75
PENTIUM3 (config, m_maincpu, 100'000'000 );
75
76
m_maincpu->set_addrmap (AS_PROGRAM, &gaelcopc_state::gaelcopc_map); // TODO: remove me
@@ -81,7 +82,7 @@ void gaelcopc_state::gaelcopc(machine_config &config)
81
82
// TODO: All of the provided BIOSes just have different ACFG table configs at $10000, investigate
82
83
83
84
ROM_START (tokyocop)
84
- ROM_REGION32_LE(0x80000 , " bios" , 0 ) /* motherboard bios */
85
+ ROM_REGION32_LE(0x80000 , " bios" , 0 ) // motherboard BIOS
85
86
// $40 Award 6.00 PG 12/19/2002
86
87
// $7413c Intel 815 Hardware version v0.0 08/13/1999
87
88
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
99
100
ROM_END
100
101
101
102
ROM_START(tokyocopk)
102
- ROM_REGION32_LE(0x80000 , " bios" , 0 ) /* motherboard bios */
103
+ ROM_REGION32_LE(0x80000 , " bios" , 0 ) // motherboard BIOS
103
104
// $40 6.00 PG 12/19/2002
104
105
// $7413c v0.0 08/13/1999
105
106
ROM_LOAD(" al1.u10" , 0x000000 , 0x80000 , CRC(e426e030) SHA1(52bdb6d46c12150077169ac3add8c450326ad4af) )
@@ -109,7 +110,7 @@ ROM_START(tokyocopk)
109
110
ROM_END
110
111
111
112
ROM_START(tokyocopi)
112
- ROM_REGION32_LE(0x80000 , " bios" , 0 ) /* motherboard bios */
113
+ ROM_REGION32_LE(0x80000 , " bios" , 0 ) // motherboard BIOS
113
114
// Not specifically provided, assume "works right" with same BIOS.
114
115
ROM_LOAD(" al1.u10" , 0x000000 , 0x80000 , CRC(e426e030) SHA1(52bdb6d46c12150077169ac3add8c450326ad4af) )
115
116
@@ -118,7 +119,7 @@ ROM_START(tokyocopi)
118
119
ROM_END
119
120
120
121
ROM_START(rriders)
121
- ROM_REGION32_LE(0x80000 , " bios" , 0 ) /* motherboard bios */
122
+ ROM_REGION32_LE(0x80000 , " bios" , 0 ) // motherboard BIOS
122
123
// $40 6.00 PG 12/19/2002
123
124
// $7413c v0.0 08/13/1999
124
125
ROM_LOAD(" 22-03.u10" , 0x000000 , 0x80000 , CRC(0ccae12f) SHA1(a8878fa73d5a4f5e9b6e3f35994fddea08cd3c2d) )
@@ -127,8 +128,9 @@ ROM_START(rriders)
127
128
DISK_IMAGE( " rriders" , 0 , SHA1(46e10517ee1b383e03c88cac67a54318c227e3e1) )
128
129
ROM_END
129
130
131
+ // Gaelco I/O card "REF. 050210" (Altera Cyclone EP1C3T144C8, AD9288...)
130
132
ROM_START(tuningrc)
131
- ROM_REGION32_LE(0x80000 , " bios" , 0 ) /* motherboard bios */
133
+ ROM_REGION32_LE(0x80000 , " bios" , 0 ) // motherboard BIOS
132
134
// $40 6.00 PG 12/19/2002
133
135
// $7413c v0.0 08/13/1999
134
136
ROM_LOAD(" 310j.u10" , 0x000000 , 0x80000 , CRC(70b0797a) SHA1(696f602e83359d5d36798d4d2962ee85171e3622) )
0 commit comments