Previous 199869 Revisions Next

r31935 Friday 5th September, 2014 at 22:44:21 UTC by hap
New not working game added
----------------------
Trivia (TTL) [gregf, Frank Palazzolo]
[src/mame]mame.lst
[src/mame/drivers]ramtek.c

trunk/src/mame/mame.lst
r31934r31935
1269412694cleanswp      // (c) 1974 Ramtek
1269512695vollyrmt      // (c) 1973 Ramtek
1269612696wipeormt      // (c) 1974 Ramtek
12697trivia        // (c) 1976 Ramtek
1269712698ramtek3       // (c) 197? Ramtek
1269812699monacogp      // (c) 1980 Sega
1269912700monacogpa     // (c) 1980 Sega
trunk/src/mame/drivers/ramtek.c
r31934r31935
176176ROM_END
177177
178178
179/***************************************************************************
180
181Ramtek Trivia
182
183Board is discrete logic.  Reads questions from 8-track tapes.
184
185Contains the following PROMS:
186
187550549-1.A4  MMI      6301-1 256x4
188550549-2.B4  MMI      6301-1 256x4
189550549-3.C4  MMI      6301-1 256x4
190550549-4.D4  MMI      6301-1 256x4
191550548.E3    Intersil IM5610 32x8
192
193Other components of note:
194
1951 10.7330Mhz crystal
1961 AY-5-1013A UART
1971 Signetics 2513 character generator
1982 2101 Static RAMs (256x4)
199
200My guess is that this is essentially a special purpose terminal.
201Together, 550549-3 and 550549-4 contain character data.
202
203On the PCB:
204    550549-2.B4 has data bits 0 and 1 not connected.
205    550549-4.D4 has data bit 3 not connected
206
207***************************************************************************/
208
209ROM_START( trivia )
210   ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASE00 )
211
212   ROM_REGION( 0x0100, "roms", ROMREGION_ERASE00 )
213   ROM_LOAD( "550549-1.a4",    0x0000, 0x0100, CRC(89a2dcc8) SHA1(688f8d916d6ade0ffeeaf8d2900db45eb27abe8c) )
214   ROM_LOAD( "550549-2.b4",    0x0000, 0x0100, CRC(2405b7a5) SHA1(1e9e658815ae2e31f97cd41861d0fcf415c12963) )
215   ROM_LOAD( "550549-3.c4",    0x0000, 0x0100, CRC(496d5e6a) SHA1(fca17f1710169dff98536d13d80f76060860caf5) )
216   ROM_LOAD( "550549-4.d4",    0x0000, 0x0100, CRC(6dbc83e9) SHA1(8a4f211cb12e5a5244d213c20a4e2df6288abcab) )
217   ROM_LOAD( "550548.e3",      0x0000, 0x0020, CRC(2b7c6a5e) SHA1(943cc3901c651bfe5bf11a40c27801952731b6de) )
218ROM_END
219
220
221
222GAME( 1973, vollyrmt,  0, ramtek, 0, driver_device,  0, ROT0, "Ramtek", "Volly (Ramtek) [TTL]", GAME_IS_SKELETON )
179223GAME( 1974, bballrmt,  0, ramtek, 0, driver_device,  0, ROT0, "Ramtek", "Baseball (Ramtek) [TTL]", GAME_IS_SKELETON )
180224GAME( 1974, cleanswp,  0, ramtek, 0, driver_device,  0, ROT0, "Ramtek", "Clean Sweep [TTL]", GAME_IS_SKELETON )
181GAME( 1973, vollyrmt,  0, ramtek, 0, driver_device,  0, ROT0, "Ramtek", "Volly (Ramtek) [TTL]", GAME_IS_SKELETON )
182225GAME( 1974, wipeormt,  0, ramtek, 0, driver_device,  0, ROT0, "Ramtek", "Wipeout (Ramtek) [TTL]", GAME_IS_SKELETON )
226GAME( 1976, trivia,    0, ramtek, 0, driver_device,  0, ROT0, "Ramtek", "Trivia (Rev B) [TTL]", GAME_IS_SKELETON )
183227
184228GAME( 197?, ramtek3,   0, ramtek, 0, driver_device,  0, ROT0, "Ramtek", "unknown Ramtek Game (Maybe Hockey?) [TTL]", GAME_IS_SKELETON )

Previous 199869 Revisions Next


© 1997-2024 The MAME Team