Previous 199869 Revisions Next

r34767 Saturday 31st January, 2015 at 19:29:18 UTC by Couriersud
Fix uninitialized var. (nw)
[src/mame/drivers]cobra.c ramtek.c

trunk/src/mame/drivers/cobra.c
r243278r243279
16781678      // Register 0x7E380000
16791679      // M2S FIFO read
16801680
1681      UINT64 value;
1681      UINT64 value = 0;
16821682      m_m2sfifo->pop(&space.device(), &value);
16831683
16841684      r |= (value & 0xff) << 24;
trunk/src/mame/drivers/ramtek.c
r243278r243279
1/*********************************************************************************
1/***************************************************************************
22
33 Ramtek Discrete Games List
44
r243278r243279
77 Baseball (1974/10)         YES       550185/550186  0550228/0550229
88 Clean Sweep (1974/06)      YES       501082A/B/C/D  501083A/B/C/D
99 Deluxe Baseball (1975/06)  YES       550188
10 Hockey (1973/11)           YES       500699         500629
10 Hockey (1973/11)           UNKNOWN   500699         500629
1111 Horoscope (1976)           UNKNOWN
12 Knock Out (1974/09)?       UNKNOWN
13 Lie Detector (1976)        UNKNOWN   Unreleased     Unreleased
12 Knockout (1974)            UNKNOWN
1413 Sea Battle (1976/04)       UNKNOWN
15 Soccer (1973/11)           YES       500880         500889
14 Soccer (1973/11)           UNKNOWN   500880         500889
1615 Trivia (1975/11)           YES
17 Volly (1973/03?)           YES       500378A        500322A
16 Volly/Volley (1973/03?)    YES       500378A        500322A
1817 Wipe Out (1974/01)         YES       500986B/C      500963B/?
19 
20 Volly Industries Discrete Games List
21 (Volly was Ramtek's Canada-based affiliate and distributor.)
2218
23 Game Name                                       Clone Of                         
24 ---------------------------------------------------------------------------------
25 Batter Up (1974/??)                             Deluxe Baseball (Ramtek, 1975/06)
26 Crossfire (1974/01) (registered trademark?)     Knock Out (Ramtek, 1974/09)?
27 Countdown (1974/02)                             Wipe Out (Ramtek, 1974/01)
28 Elimination (1973/12?) (registered trademark?)  unknown
29 Flip-Out (1974/05?)                             Clean Sweep (Ramtek, 1974/06)
30 Hockey (1973/??)                                Hockey (Ramtek, 1973/11)
31 Hockey (Cocktail) (1973/??)                     Soccer (Ramtek, 1973/11)
32 Scoring (1973/11?)                              Soccer (Ramtek, 1973/11)?
33 Tennis (1973/??)                                Volly (Ramtek, 1973/03?)
34 
35 *********************************************************************************/
19 ***************************************************************************/
3620
3721
3822#include "emu.h"
r243278r243279
4226#include "video/fixfreq.h"
4327#include "astring.h"
4428
45// copied from Pong, not accurate for this driver!
29// copied by Pong, not accurate for this driver!
4630// start
4731#define MASTER_CLOCK    7159000
4832#define V_TOTAL         (0x105+1)       // 262


Previous 199869 Revisions Next


© 1997-2024 The MAME Team