Previous 199869 Revisions Next

r31477 Thursday 31st July, 2014 at 10:46:15 UTC by Robbbert
pps4 / gts1 : added notes
[src/emu/cpu/pps4]pps4.c
[src/mame/drivers]gts1.c

trunk/src/mame/drivers/gts1.c
r31476r31477
1/*
2    Gottlieb System 1
3*/
1/****************************************************************************************************
42
3PINBALL
4Gottlieb System 1
55
6#include "emu.h"
6Gottlieb's first foray into computerised pinball.
7
8Typical of Gottlieb's golden period, these machines are physically well-designed and made.
9However, the computer side was another story, an attempt to catch up to its competitors who
10were way ahead in the technology race. Instead of each board being solidly grounded to the
11chassis, the only connections were through flaky edge connectors. Voltage differences would
12then cause solenoids and lights to switch on at random and destroy transistors. Further, the
13CPU chips chosen were an unusual 4-bit design that was already old.
14
15The first games had chimes. Then, this was replaced by 3 NE555 tone oscillators. The last
16machines had a real sound board which had more computing power than the main cpu.
17
18Game numbering:
19Each Gottlieb game had the model number printed on the instruction card, so it was very
20easy to gather information. Gottlieb either made a single-player game, or a 2-player and
21a 4-player game. For example, Centigrade 37 (#407) was a single-player game, while Bronco
22(4-player)(#396) was exactly the same as Mustang (2-player)(#397). Cleopatra (#409) was
23originally a 4-player EM game (with Pyramid #410 being the 2-player version). Then, the SS
24version was made, and it kept the same number. After that, the SS versions were suffixed
25with 'SS' up to The Incredible Hulk (#433), and then the 'SS' was dropped.
26
27
28Game List:
29Number  ROM  Name
30409     A    Cleopatra
31412SS   B    Sinbad
32417SS   C    Joker Poker
33419SS   D    Dragon
34421SS   E    Solar Ride
35422SS   F    Countdown
36424SS   G    Close Encounters of the third kind
37425SS   H    Charlie's Angels
38427SS   I    Pinball Pool
39429SS   J    Totem
40433SS   K    The Incredible Hulk
41435     L    Genie
42437     N    Buck Rogers
43438     P    Torch
44440     R    Roller Disco
45442     S    Asteroid Annie and the Aliens
46
47Chips used:
48U1 11660     CPU
49U2 10696EE   5101L RAM interface (device#6)
50U3 10696EE   General purpose I/O (dipswitches, lamps, misc) (device#3)
51U4 A1753CX   Custom 2kx8 ROM, 128x4 RAM, 16x1 I/O (solenoid control)
52U5 A1752CX   Custom 2kx8 ROM, 128x4 RAM, 16x1 I/O (switch matrix)
53U6 10788     Display driver
54   5101L     4-bit static RAM
55   MM6351-IJ ROM
56
57
58ToDo:
59- Everything
60- Hard to debug because no errors are logged; also the program flow seems odd.
61- 5101L RAM (battery-backed) is driven from the 10696.
62- MM6351 ROM is driven from the CPU I/O ports and has 4 banks.
63
64*****************************************************************************************************/
65
66
67#include "machine/genpin.h"
768#include "cpu/pps4/pps4.h"
69//#include "machine/nvram.h"
70//#include "gts1.lh"
871
9class gts1_state : public driver_device
72class gts1_state : public genpin_class
1073{
1174public:
1275   gts1_state(const machine_config &mconfig, device_type type, const char *tag)
13      : driver_device(mconfig, type, tag),
14         m_maincpu(*this, "maincpu")
76      : genpin_class(mconfig, type, tag)
77      , m_maincpu(*this, "maincpu")
1578   { }
1679
17protected:
18
19   // devices
80   DECLARE_DRIVER_INIT(gts1);
81private:
82   virtual void machine_reset();
2083   required_device<cpu_device> m_maincpu;
21
22   // driver_device overrides
23   virtual void machine_reset();
24public:
25   DECLARE_DRIVER_INIT(gts1);
2684};
2785
2886
2987static ADDRESS_MAP_START( gts1_map, AS_PROGRAM, 8, gts1_state )
30   AM_RANGE(0x0000, 0xffff) AM_NOP
88   AM_RANGE(0x0000, 0x0fff) AM_ROM
3189ADDRESS_MAP_END
3290
91static ADDRESS_MAP_START( gts1_data, AS_DATA, 8, gts1_state )
92   AM_RANGE(0x0000, 0x0fff) AM_RAM // not correct
93ADDRESS_MAP_END
94
95static ADDRESS_MAP_START( gts1_io, AS_IO, 8, gts1_state )
96   AM_RANGE(0x0000, 0x00ff) AM_RAM // connects to all the other chips
97ADDRESS_MAP_END
98
3399static INPUT_PORTS_START( gts1 )
100   PORT_START("DSW0")
101   PORT_DIPNAME( 0x01, 0x00, "S01")
102   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
103   PORT_DIPSETTING(    0x01, DEF_STR( On ))
104   PORT_DIPNAME( 0x02, 0x00, "S02")
105   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
106   PORT_DIPSETTING(    0x02, DEF_STR( On ))
107   PORT_DIPNAME( 0x04, 0x00, "S03")
108   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
109   PORT_DIPSETTING(    0x04, DEF_STR( On ))
110   PORT_DIPNAME( 0x08, 0x00, "S04")
111   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
112   PORT_DIPSETTING(    0x08, DEF_STR( On ))
113   PORT_DIPNAME( 0x10, 0x00, "S05")
114   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
115   PORT_DIPSETTING(    0x10, DEF_STR( On ))
116   PORT_DIPNAME( 0x20, 0x20, "S06")
117   PORT_DIPSETTING(    0x00, DEF_STR( No ))
118   PORT_DIPSETTING(    0x20, DEF_STR( Yes ))
119   PORT_DIPNAME( 0x40, 0x40, "S07")
120   PORT_DIPSETTING(    0x00, DEF_STR( No ))
121   PORT_DIPSETTING(    0x40, DEF_STR( Yes ))
122   PORT_DIPNAME( 0x80, 0x80, "S08")
123   PORT_DIPSETTING(    0x00, DEF_STR( No ))
124   PORT_DIPSETTING(    0x80, DEF_STR( Yes ))
125
126   PORT_START("DSW1")
127   PORT_DIPNAME( 0x01, 0x00, "S09")
128   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
129   PORT_DIPSETTING(    0x01, DEF_STR( On ))
130   PORT_DIPNAME( 0x02, 0x00, "S10")
131   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
132   PORT_DIPSETTING(    0x02, DEF_STR( On ))
133   PORT_DIPNAME( 0x04, 0x00, "S11")
134   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
135   PORT_DIPSETTING(    0x04, DEF_STR( On ))
136   PORT_DIPNAME( 0x08, 0x00, "S12")
137   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
138   PORT_DIPSETTING(    0x08, DEF_STR( On ))
139   PORT_DIPNAME( 0x10, 0x00, "S13")
140   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
141   PORT_DIPSETTING(    0x10, DEF_STR( On ))
142   PORT_DIPNAME( 0x20, 0x00, "S14")
143   PORT_DIPSETTING(    0x00, DEF_STR( Yes ))
144   PORT_DIPSETTING(    0x20, DEF_STR( No ))
145   PORT_DIPNAME( 0x40, 0x40, "S15")
146   PORT_DIPSETTING(    0x00, DEF_STR( No ))
147   PORT_DIPSETTING(    0x40, DEF_STR( Yes ))
148   PORT_DIPNAME( 0x80, 0x00, "S16")
149   PORT_DIPSETTING(    0x00, DEF_STR( No ))
150   PORT_DIPSETTING(    0x80, DEF_STR( Yes ))
151
152   PORT_START("DSW2")
153   PORT_DIPNAME( 0x01, 0x00, "S17")
154   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
155   PORT_DIPSETTING(    0x01, DEF_STR( On ))
156   PORT_DIPNAME( 0x02, 0x00, "S18")
157   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
158   PORT_DIPSETTING(    0x02, DEF_STR( On ))
159   PORT_DIPNAME( 0x04, 0x00, "S19")
160   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
161   PORT_DIPSETTING(    0x04, DEF_STR( On ))
162   PORT_DIPNAME( 0x08, 0x00, "S20")
163   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
164   PORT_DIPSETTING(    0x08, DEF_STR( On ))
165   PORT_DIPNAME( 0x10, 0x00, "S21")
166   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
167   PORT_DIPSETTING(    0x10, DEF_STR( On ))
168   PORT_DIPNAME( 0x20, 0x00, "S22")
169   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
170   PORT_DIPSETTING(    0x20, DEF_STR( On ))
171   PORT_DIPNAME( 0x40, 0x00, "S23")
172   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
173   PORT_DIPSETTING(    0x40, DEF_STR( On ))
174   PORT_DIPNAME( 0x80, 0x00, "S24")
175   PORT_DIPSETTING(    0x00, DEF_STR( Off ))
176   PORT_DIPSETTING(    0x80, DEF_STR( On ))
34177INPUT_PORTS_END
35178
36179void gts1_state::machine_reset()
r31476r31477
43186
44187static MACHINE_CONFIG_START( gts1, gts1_state )
45188   /* basic machine hardware */
46   MCFG_CPU_ADD("maincpu", PPS4, 198864)
189   MCFG_CPU_ADD("maincpu", PPS4, XTAL_3_579545MHz / 18)  // divided in the CPU
47190   MCFG_CPU_PROGRAM_MAP(gts1_map)
191   MCFG_CPU_DATA_MAP(gts1_data)
192   MCFG_CPU_IO_MAP(gts1_io)
193
194   //MCFG_NVRAM_ADD_0FILL("nvram")
195
196   /* Video */
197   //MCFG_DEFAULT_LAYOUT(layout_gts1)
198
199   /* Sound */
200   MCFG_FRAGMENT_ADD( genpin_audio )
48201MACHINE_CONFIG_END
49202
50203
r31476r31477
61214ROM_END
62215
63216/*-------------------------------------------------------------------
64/ Asteroid Annie and the Aliens (12/1980)
217/ Asteroid Annie and the Aliens (12/1980) #442
65218/-------------------------------------------------------------------*/
66219ROM_START(astannie)
67220   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
76229ROM_END
77230
78231/*-------------------------------------------------------------------
79/ Buck Rogers (01/1980)
232/ Buck Rogers (01/1980) #437
80233/-------------------------------------------------------------------*/
81234ROM_START(buckrgrs)
82235   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
91244ROM_END
92245
93246/*-------------------------------------------------------------------
94/ Charlie's Angels (11/1978)
247/ Charlie's Angels (11/1978) #425
95248/-------------------------------------------------------------------*/
96249ROM_START(charlies)
97250   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
100253   ROM_LOAD("425.cpu", 0x2000, 0x0400, CRC(928b4279) SHA1(51096d45e880d6a8263eaeaa0cdab0f61ad2f58d))
101254ROM_END
102255/*-------------------------------------------------------------------
103/ Cleopatra (11/1977)
256/ Cleopatra (11/1977) #409
104257/-------------------------------------------------------------------*/
105258ROM_START(cleoptra)
106259   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
110263ROM_END
111264
112265/*-------------------------------------------------------------------
113/ Close Encounters of the Third Kind (10/1978)
266/ Close Encounters of the Third Kind (10/1978) #424
114267/-------------------------------------------------------------------*/
115268ROM_START(closeenc)
116269   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
120273ROM_END
121274
122275/*-------------------------------------------------------------------
123/ Count-Down (05/1979)
276/ Count-Down (05/1979) #422
124277/-------------------------------------------------------------------*/
125278ROM_START(countdwn)
126279   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
130283ROM_END
131284
132285/*-------------------------------------------------------------------
133/ Dragon (10/1978)
286/ Dragon (10/1978) #419
134287/-------------------------------------------------------------------*/
135288ROM_START(dragon)
136289   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
140293ROM_END
141294
142295/*-------------------------------------------------------------------
143/ Genie (11/1979)
296/ Genie (11/1979) #435
144297/-------------------------------------------------------------------*/
145298ROM_START(geniep)
146299   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
155308ROM_END
156309
157310/*-------------------------------------------------------------------
158/ Joker Poker (08/1978)
311/ Joker Poker (08/1978) #417
159312/-------------------------------------------------------------------*/
160313ROM_START(jokrpokr)
161314   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
183336/-------------------------------------------------------------------*/
184337
185338/*-------------------------------------------------------------------
186/ Pinball Pool (08/1979)
339/ Pinball Pool (08/1979) #427
187340/-------------------------------------------------------------------*/
188341ROM_START(pinpool)
189342   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
193346ROM_END
194347
195348/*-------------------------------------------------------------------
196/ Roller Disco (02/1980)
349/ Roller Disco (02/1980) #440
197350/-------------------------------------------------------------------*/
198351ROM_START(roldisco)
199352   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
212365/-------------------------------------------------------------------*/
213366
214367/*-------------------------------------------------------------------
215/ Sinbad (05/1978)
368/ Sinbad (05/1978) #412
216369/-------------------------------------------------------------------*/
217370ROM_START(sinbad)
218371   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
233386/-------------------------------------------------------------------*/
234387
235388/*-------------------------------------------------------------------
236/ Solar Ride (02/1979)
389/ Solar Ride (02/1979) #421
237390/-------------------------------------------------------------------*/
238391ROM_START(solaride)
239392   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
243396ROM_END
244397
245398/*-------------------------------------------------------------------
246/ The Incredible Hulk (10/1979)
399/ The Incredible Hulk (10/1979) #433
247400/-------------------------------------------------------------------*/
248401ROM_START(hulk)
249402   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
258411ROM_END
259412
260413/*-------------------------------------------------------------------
261/ Torch (02/1980)
414/ Torch (02/1980) #438
262415/-------------------------------------------------------------------*/
263416ROM_START(torch)
264417   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
273426ROM_END
274427
275428/*-------------------------------------------------------------------
276/ Totem (10/1979)
429/ Totem (10/1979) #429
277430/-------------------------------------------------------------------*/
278431ROM_START(totem)
279432   ROM_REGION(0x10000, "maincpu", 0)
r31476r31477
298451ROM_END
299452
300453
301GAME(1977,  gts1,       0,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "System 1",                            GAME_IS_BIOS_ROOT)
454GAME(1977,  gts1,       0,          gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "System 1", GAME_IS_BIOS_ROOT)
302455
303456//Exact same roms as gts1 with added hardware we'll likely need roms for to emulate properly
304GAME(1979,  gts1s,      gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "System 1 with sound board",                        GAME_IS_BIOS_ROOT)
457GAME(1979,  gts1s,      gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "System 1 with sound board", GAME_IS_BIOS_ROOT)
458GAME(19??,  sys1test,   gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "System 1 Test prom",                   GAME_IS_SKELETON_MECHANICAL)
305459
306GAME(1980,  astannie,   gts1s,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Asteroid Annie and the Aliens",        GAME_IS_SKELETON_MECHANICAL)
307GAME(1980,  buckrgrs,   gts1s,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Buck Rogers",                          GAME_IS_SKELETON_MECHANICAL)
308GAME(1978,  charlies,   gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Charlie's Angels",                     GAME_IS_SKELETON_MECHANICAL)
460// chimes
309461GAME(1977,  cleoptra,   gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Cleopatra",                            GAME_IS_SKELETON_MECHANICAL)
310GAME(1978,  closeenc,   gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Close Encounters of the Third Kind",   GAME_IS_SKELETON_MECHANICAL)
311GAME(1979,  countdwn,   gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Count-Down",                           GAME_IS_SKELETON_MECHANICAL)
312GAME(1978,  dragon,     gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Dragon",                               GAME_IS_SKELETON_MECHANICAL)
313GAME(1979,  geniep,     gts1s,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Genie (Pinball)",                              GAME_IS_SKELETON_MECHANICAL)
314GAME(1978,  jokrpokr,   gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Joker Poker",                          GAME_IS_SKELETON_MECHANICAL)
315GAME(1979,  pinpool,    gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Pinball Pool",                         GAME_IS_SKELETON_MECHANICAL)
316GAME(1980,  roldisco,   gts1s,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Roller Disco",                         GAME_IS_SKELETON_MECHANICAL)
317462GAME(1978,  sinbad,     gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Sinbad",                               GAME_IS_SKELETON_MECHANICAL)
318463GAME(1978,  sinbadn,    sinbad,     gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Sinbad (Norway)",                      GAME_IS_SKELETON_MECHANICAL)
464GAME(1978,  jokrpokr,   gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Joker Poker",                          GAME_IS_SKELETON_MECHANICAL)
465GAME(1978,  dragon,     gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Dragon",                               GAME_IS_SKELETON_MECHANICAL)
319466GAME(1979,  solaride,   gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Solar Ride",                           GAME_IS_SKELETON_MECHANICAL)
467GAME(1979,  countdwn,   gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Count-Down",                           GAME_IS_SKELETON_MECHANICAL)
468
469// NE555 beeper
470GAME(1978,  closeenc,   gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Close Encounters of the Third Kind",   GAME_IS_SKELETON_MECHANICAL)
471GAME(1978,  charlies,   gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Charlie's Angels",                     GAME_IS_SKELETON_MECHANICAL)
472GAME(1979,  pinpool,    gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Pinball Pool",                         GAME_IS_SKELETON_MECHANICAL)
473
474// sound card
475GAME(1979,  totem,      gts1s,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Totem",                                GAME_IS_SKELETON_MECHANICAL)
320476GAME(1979,  hulk,       gts1s,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Incredible Hulk,The",                  GAME_IS_SKELETON_MECHANICAL)
477GAME(1979,  geniep,     gts1s,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Genie (Pinball)",                              GAME_IS_SKELETON_MECHANICAL)
478GAME(1980,  buckrgrs,   gts1s,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Buck Rogers",                          GAME_IS_SKELETON_MECHANICAL)
321479GAME(1980,  torch,      gts1s,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Torch",                                GAME_IS_SKELETON_MECHANICAL)
322GAME(1979,  totem,      gts1s,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Totem",                                GAME_IS_SKELETON_MECHANICAL)
480GAME(1980,  roldisco,   gts1s,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Roller Disco",                         GAME_IS_SKELETON_MECHANICAL)
481GAME(1980,  astannie,   gts1s,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "Asteroid Annie and the Aliens",        GAME_IS_SKELETON_MECHANICAL)
482
483// homebrew
323484GAME(1986,  hexagone,   gts1s,      gts1,   gts1, gts1_state,   gts1,   ROT0,   "Christian Tabart (France)",        "L'Hexagone",       GAME_IS_SKELETON_MECHANICAL)
324GAME(19??,  sys1test,   gts1,       gts1,   gts1, gts1_state,   gts1,   ROT0,   "Gottlieb",     "System 1 Test prom",                   GAME_IS_SKELETON_MECHANICAL)
trunk/src/emu/cpu/pps4/pps4.c
r31476r31477
55 *   pps4.c
66 *
77 *   Rockwell PPS-4 CPU
8 *   Introduced in 1972, it ran at 256kHz. An improved version was released
9 *   in 1975, but could only manage 200kHz. The chipset continued to be
10 *   produced through the 1980s, but never found much acceptance. Chip
11 *   numbers are 10660 (original), 11660, 12660.
812 *
13 *   List of support / peripheral chips:
14 *   10706   Clock generator
15 *   10738   Bus interface
16 *   11049   Interval timer
17 *   10686   General purpose I/O
18 *   10696   General purpose I/O
19 *   10731   Telecommunications data interface
20 *   10736   dot matrix printer controller
21 *   10788   keyboard/display controller
22 *   10789   printer controller
23 *   10815   keyboard/printer controller
24 *   10930   Serial data controller
25 *   15380   dot matrix printer controller
26 *
27 *   Note: External clock should be divided by 18 (not implemented).
28 *
929 *****************************************************************************/
1030#include "emu.h"
1131#include "debugger.h"

Previous 199869 Revisions Next


© 1997-2024 The MAME Team