a final round of additions. nw.

This commit is contained in:
Fabio Priuli 2014-02-04 10:57:52 +00:00
parent c1274c325e
commit fd54eaac0b
6 changed files with 479 additions and 0 deletions

3
.gitattributes vendored
View File

@ -3503,6 +3503,7 @@ src/mame/drivers/4roses.c svneol=native#text/plain
src/mame/drivers/5clown.c svneol=native#text/plain
src/mame/drivers/8080bw.c svneol=native#text/plain
src/mame/drivers/88games.c svneol=native#text/plain
src/mame/drivers/a1supply.c svneol=native#text/plain
src/mame/drivers/ace.c svneol=native#text/plain
src/mame/drivers/acefruit.c svneol=native#text/plain
src/mame/drivers/aces1.c svneol=native#text/plain
@ -3575,6 +3576,7 @@ src/mame/drivers/aztarac.c svneol=native#text/plain
src/mame/drivers/backfire.c svneol=native#text/plain
src/mame/drivers/badlands.c svneol=native#text/plain
src/mame/drivers/bagman.c svneol=native#text/plain
src/mame/drivers/bailey.c svneol=native#text/plain
src/mame/drivers/balsente.c svneol=native#text/plain
src/mame/drivers/bankp.c svneol=native#text/plain
src/mame/drivers/baraduke.c svneol=native#text/plain
@ -3866,6 +3868,7 @@ src/mame/drivers/fresh.c svneol=native#text/plain
src/mame/drivers/fromanc2.c svneol=native#text/plain
src/mame/drivers/fromance.c svneol=native#text/plain
src/mame/drivers/fruitpc.c svneol=native#text/plain
src/mame/drivers/fungames.c svneol=native#text/plain
src/mame/drivers/funkball.c svneol=native#text/plain
src/mame/drivers/funkybee.c svneol=native#text/plain
src/mame/drivers/funkyjet.c svneol=native#text/plain

169
src/mame/drivers/a1supply.c Normal file
View File

@ -0,0 +1,169 @@
/***************************************************************************
A-1 Supply discrete hardware games
TV 21 (197?)
TV 21 III (197?)
TV Poker (197?)
***************************************************************************/
#include "emu.h"
#include "machine/rescap.h"
#include "machine/netlist.h"
#include "netlist/devices/net_lib.h"
#include "video/fixfreq.h"
#include "astring.h"
// copied by Pong, not accurate for this driver!
// start
#define MASTER_CLOCK 7159000
#define V_TOTAL (0x105+1) // 262
#define H_TOTAL (0x1C6+1) // 454
#define HBSTART (H_TOTAL)
#define HBEND (80)
#define VBSTART (V_TOTAL)
#define VBEND (16)
#define HRES_MULT (1)
fixedfreq_interface fixedfreq_mode_a1supply = {
MASTER_CLOCK,
H_TOTAL-67,H_TOTAL-40,H_TOTAL-8,H_TOTAL,
V_TOTAL-22,V_TOTAL-19,V_TOTAL-12,V_TOTAL,
1, /* non-interlaced */
0.30
};
// end
class a1supply_state : public driver_device
{
public:
a1supply_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_video(*this, "fixfreq")
{
}
// devices
required_device<netlist_mame_device_t> m_maincpu;
required_device<fixedfreq_device> m_video;
protected:
// driver_device overrides
virtual void machine_start();
virtual void machine_reset();
virtual void video_start();
private:
};
static NETLIST_START(a1supply)
SOLVER(Solver)
PARAM(Solver.FREQ, 48000)
PARAM(Solver.ACCURACY, 1e-4) // works and is sufficient
// schematics
//...
// NETDEV_ANALOG_CALLBACK(sound_cb, sound, exidyttl_state, sound_cb, "")
// NETDEV_ANALOG_CALLBACK(video_cb, videomix, fixedfreq_device, update_vid, "fixfreq")
NETLIST_END()
void a1supply_state::machine_start()
{
}
void a1supply_state::machine_reset()
{
}
void a1supply_state::video_start()
{
}
static MACHINE_CONFIG_START( a1supply, a1supply_state )
/* basic machine hardware */
MCFG_DEVICE_ADD("maincpu", NETLIST_CPU, NETLIST_CLOCK)
MCFG_NETLIST_SETUP(a1supply)
/* video hardware */
MCFG_FIXFREQ_ADD("fixfreq", "screen", fixedfreq_mode_a1supply)
MACHINE_CONFIG_END
/***************************************************************************
Game driver(s)
***************************************************************************/
ROM_START( tv21 )
ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASE00 )
ROM_REGION( 0x0800, "roms", ROMREGION_ERASE00 )
ROM_LOAD( "aw.1c", 0x0000, 0x0800, CRC(7a1d2705) SHA1(622fbccbbf9fc80d62a5dd6d143b24852385914b) )
ROM_LOAD( "aw.3c", 0x0000, 0x0800, CRC(f1e8ba9e) SHA1(605db3fdbaff4ba13729371ad0c4fbab3889378e) )
ROM_LOAD( "aw.43", 0x0000, 0x0200, CRC(b23759c7) SHA1(6903b8cc9fa711b985afd52582237e66d97d3262) )
ROM_LOAD( "aw.45", 0x0000, 0x0200, CRC(6acefe3e) SHA1(6cf751df41c26eb0375770742d3bfc318c084b11) )
ROM_LOAD( "aw.63", 0x0000, 0x0200, CRC(a022fbe7) SHA1(625283f1cd7fbd21bcd17912cbd455404282bef8) )
ROM_LOAD( "aw.73", 0x0000, 0x0200, CRC(34e3082d) SHA1(4daf28cfee41c2fd9711a5b5365bf322cf2fe8cd) )
ROM_LOAD( "aw.12", 0x0000, 0x0020, CRC(490c782a) SHA1(6c5455ece13f200079924e5d3af3f6b6ee8ab3ef) )
ROM_LOAD( "aw.22", 0x0000, 0x0020, CRC(80d03096) SHA1(39e60a7acaf019c0738e2048efbef6dd566426bc) )
ROM_LOAD( "aw.41", 0x0000, 0x0020, CRC(8b2e1b4d) SHA1(efc374c8919496211b8587a9f6da15d13c801213) )
ROM_LOAD( "aw.65", 0x0000, 0x0020, CRC(a54ace38) SHA1(05d8ec79566310b18d14c04a5216288e15575908) )
ROM_END
ROM_START( tv21_3 )
ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASE00 )
ROM_REGION( 0x0800, "roms", ROMREGION_ERASE00 )
ROM_LOAD( "tv21.9", 0x0000, 0x0800, CRC(c821464c) SHA1(5334e6011ff8cd76b6215af05e697e4538921260) )
ROM_LOAD( "tv21.42", 0x0000, 0x0200, CRC(d8595357) SHA1(44805f2b3dad8e764dda246ed19d328927679062) )
ROM_LOAD( "tv21.47", 0x0000, 0x0200, CRC(165f590a) SHA1(d4d001ac710d28b983f8f5ce4a2e9364c2e73179) )
ROM_END
ROM_START( tvpoker )
ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASE00 )
ROM_REGION( 0x0400, "roms", ROMREGION_ERASE00 )
ROM_LOAD( "tvpoker.47", 0x0000, 0x0200, CRC(92bafcb3) SHA1(53598477c12e725c2aaaba1065e8a51f52e821ca) )
ROM_LOAD( "tvpoker.67", 0x0000, 0x0200, CRC(cf7d7d7f) SHA1(d6a892cd9f1b817ac189c50c94081c948ea9e3e0) )
ROM_LOAD( "tvpoker.26", 0x0000, 0x0100, CRC(4b301446) SHA1(5020d03678b8a193a06d658ea6088cdcc55ebf35) )
ROM_LOAD( "tvpoker.36", 0x0000, 0x0100, CRC(40ac3596) SHA1(1c1a4b5278b9fdbe467a6abbd9d5ed4edbc7b49b) )
ROM_LOAD( "tvpoker.38", 0x0000, 0x0100, CRC(95945f9f) SHA1(b83bcee3df787577a3b0651c554e075b28246e31) )
ROM_LOAD( "tvpoker.39", 0x0000, 0x0100, CRC(40ac3596) SHA1(1c1a4b5278b9fdbe467a6abbd9d5ed4edbc7b49b) )
ROM_LOAD( "tvpoker.68", 0x0000, 0x0100, CRC(d3e64864) SHA1(89bf6a2f3a8840331bf14bd4345f88c463efcc29) )
ROM_LOAD( "tvpoker.17", 0x0000, 0x0020, CRC(8b2e1b4d) SHA1(efc374c8919496211b8587a9f6da15d13c801213) )
ROM_LOAD( "tvpoker.20", 0x0000, 0x0020, CRC(a4a7d564) SHA1(fd625d431ca00fec129b85526839cd8e4f7d7091) )
ROM_LOAD( "tvpoker.21", 0x0000, 0x0020, CRC(80d03096) SHA1(39e60a7acaf019c0738e2048efbef6dd566426bc) )
ROM_LOAD( "tvpoker.22", 0x0000, 0x0020, CRC(490c782a) SHA1(6c5455ece13f200079924e5d3af3f6b6ee8ab3ef) )
ROM_LOAD( "tvpoker.62", 0x0000, 0x0020, CRC(d72e5be0) SHA1(91daaf62dc17f8c1b837a9fa991c57b471450a1a) )
ROM_LOAD( "tvpoker.69", 0x0000, 0x0020, CRC(d8c22608) SHA1(170e6f552fc013fec6903e45e2c7ec07e44d725c) )
ROM_LOAD( "tvpoker.71", 0x0000, 0x0020, CRC(fea65356) SHA1(4f336dfa33a3920aef3f3eb68239c64e0fc0fed5) )
ROM_END
GAME( 197?, tv21, 0, a1supply, 0, driver_device, 0, ROT0, "A-1 Supply", "T.V. 21 [TTL]", GAME_IS_SKELETON )
GAME( 197?, tv21_3, 0, a1supply, 0, driver_device, 0, ROT0, "A-1 Supply", "T.V. 21 III [TTL]", GAME_IS_SKELETON )
GAME( 197?, tvpoker, 0, a1supply, 0, driver_device, 0, ROT0, "A-1 Supply", "T.V. Poker [TTL]", GAME_IS_SKELETON )

156
src/mame/drivers/bailey.c Normal file
View File

@ -0,0 +1,156 @@
/***************************************************************************
Bailey International discrete hardware games
Fun Four (1976)
***************************************************************************/
#include "emu.h"
#include "machine/rescap.h"
#include "machine/netlist.h"
#include "netlist/devices/net_lib.h"
#include "video/fixfreq.h"
#include "astring.h"
// copied by Pong, not accurate for this driver!
// start
#define MASTER_CLOCK 7159000
#define V_TOTAL (0x105+1) // 262
#define H_TOTAL (0x1C6+1) // 454
#define HBSTART (H_TOTAL)
#define HBEND (80)
#define VBSTART (V_TOTAL)
#define VBEND (16)
#define HRES_MULT (1)
fixedfreq_interface fixedfreq_mode_bailey = {
MASTER_CLOCK,
H_TOTAL-67,H_TOTAL-40,H_TOTAL-8,H_TOTAL,
V_TOTAL-22,V_TOTAL-19,V_TOTAL-12,V_TOTAL,
1, /* non-interlaced */
0.30
};
// end
class bailey_state : public driver_device
{
public:
bailey_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_video(*this, "fixfreq")
{
}
// devices
required_device<netlist_mame_device_t> m_maincpu;
required_device<fixedfreq_device> m_video;
protected:
// driver_device overrides
virtual void machine_start();
virtual void machine_reset();
virtual void video_start();
private:
};
static NETLIST_START(bailey)
SOLVER(Solver)
PARAM(Solver.FREQ, 48000)
PARAM(Solver.ACCURACY, 1e-4) // works and is sufficient
// schematics
//...
// NETDEV_ANALOG_CALLBACK(sound_cb, sound, exidyttl_state, sound_cb, "")
// NETDEV_ANALOG_CALLBACK(video_cb, videomix, fixedfreq_device, update_vid, "fixfreq")
NETLIST_END()
void bailey_state::machine_start()
{
}
void bailey_state::machine_reset()
{
}
void bailey_state::video_start()
{
}
static MACHINE_CONFIG_START( bailey, bailey_state )
/* basic machine hardware */
MCFG_DEVICE_ADD("maincpu", NETLIST_CPU, NETLIST_CLOCK)
MCFG_NETLIST_SETUP(bailey)
/* video hardware */
MCFG_FIXFREQ_ADD("fixfreq", "screen", fixedfreq_mode_bailey)
MACHINE_CONFIG_END
/***************************************************************************
Game driver(s)
***************************************************************************/
ROM_START( fun4 )
ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASE00 )
ROM_REGION( 0x0400, "roms", ROMREGION_ERASE00 )
ROM_LOAD( "bailey.bh3", 0x0000, 0x0200, CRC(ca44974f) SHA1(5ac7b764fa89ba93ad7c2a7db649f34ce16d526b) )
ROM_LOAD( "bailey.d3", 0x0000, 0x0200, CRC(419aa79b) SHA1(8b7a5da33e24f9e13212721757165c53340828ce) )
ROM_LOAD( "bailey.f4", 0x0000, 0x0200, CRC(3558736b) SHA1(a32b76a8691abf06972f6a9ac784c31dbb42f3f1) )
ROM_LOAD( "bailey.g2", 0x0000, 0x0200, CRC(426290ba) SHA1(d40c9632ca64ac1445c2e05f9b62798a3e96cd81) )
ROM_LOAD( "bailey.g3", 0x0000, 0x0200, CRC(5dfc36ac) SHA1(c13209aea3038928bae3610b6071efe205bc6273) )
ROM_LOAD( "bailey.g5", 0x0000, 0x0200, CRC(477f6fca) SHA1(0b522b6a952e2fb17d657af74ac5759db81ba7b4) )
ROM_LOAD( "bailey.h2", 0x0000, 0x0200, CRC(a2b6e2fa) SHA1(c92c1e45c55103de1ce9069f368eb2af5ba23906) )
ROM_LOAD( "bailey.h4", 0x0000, 0x0200, CRC(47d757fc) SHA1(24f4459ed174308c69f48d43fb8cdf88c494b954) )
ROM_LOAD( "bailey.h5", 0x0000, 0x0200, CRC(26fa6907) SHA1(c2a3d648983d27d94f414412d6eda005c923013c) )
ROM_LOAD( "bailey.th3", 0x0000, 0x0200, CRC(9d66f473) SHA1(eeef0f10bdd1ac01db2870ff4b0084c97c268bd6) )
ROM_LOAD( "bailey.e3", 0x0000, 0x0020, CRC(82e5e448) SHA1(549925b8e9280ed102396dca1acaa8c999838993) )
ROM_LOAD( "bailey.f3", 0x0000, 0x0020, CRC(c3a5b496) SHA1(662bd8b66659a02c0b6a5291ac1ac134ddc212b7) )
ROM_LOAD( "bailey.g4", 0x0000, 0x0020, CRC(99f918d5) SHA1(74fb3a0f0f86b2900a1bd0dac77ae7e129885a1d) )
ROM_END
ROM_START( fun4a )
ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASE00 )
ROM_REGION( 0x0400, "roms", ROMREGION_ERASE00 )
ROM_LOAD( "bailey1.bh3", 0x0000, 0x0200, CRC(58df5484) SHA1(3cbc2fadde7c482efd1282ecacc254411401e3d6) )
ROM_LOAD( "bailey1.d3", 0x0000, 0x0200, CRC(c3e586ba) SHA1(39f4ab41a62d52ba8ccf722c1f190afc439a607c) )
ROM_LOAD( "bailey1.f4", 0x0000, 0x0200, CRC(b727524a) SHA1(e24df1bdc9a4469602f2e9e59be9882e3c1a1988) )
ROM_LOAD( "bailey1.g2", 0x0000, 0x0200, CRC(c01db19b) SHA1(f38c05518b8eef34f953471e63d0245c17a756de) )
ROM_LOAD( "bailey1.g3", 0x0000, 0x0200, CRC(df83178d) SHA1(3a7ce78bc354e23d3dbc106095e49122d0e29607) )
ROM_LOAD( "bailey1.g5", 0x0000, 0x0200, CRC(c5004eeb) SHA1(b948c8d00c51ceb6622f504a6dc01074e19da17d) )
ROM_LOAD( "bailey1.h2", 0x0000, 0x0200, CRC(20c9c3db) SHA1(3b6a135353b9f4e919dc5c271c255552a086c1a6) )
ROM_LOAD( "bailey1.h4", 0x0000, 0x0200, CRC(c5a876dd) SHA1(47a6ecf8b59c23f616a6ec0559a4225195752f0e) )
ROM_LOAD( "bailey1.h5", 0x0000, 0x0200, CRC(a4854826) SHA1(0c6cd51acf80c8f3691c5d5025b3df44064cc37a) )
ROM_LOAD( "bailey1.th3", 0x0000, 0x0200, CRC(0ffd37b8) SHA1(5937704be2f745939e6271f1a69474337c4d721f) )
ROM_LOAD( "bailey1.e3", 0x0000, 0x0020, CRC(82e5e448) SHA1(549925b8e9280ed102396dca1acaa8c999838993) )
ROM_LOAD( "bailey1.f3", 0x0000, 0x0020, CRC(c3a5b496) SHA1(662bd8b66659a02c0b6a5291ac1ac134ddc212b7) )
ROM_LOAD( "bailey1.g4", 0x0000, 0x0020, CRC(99f918d5) SHA1(74fb3a0f0f86b2900a1bd0dac77ae7e129885a1d) )
ROM_END
GAME( 1976, fun4, 0, bailey, 0, driver_device, 0, ROT0, "Bailey International", "Fun Four (Set 1) [TTL]", GAME_IS_SKELETON )
GAME( 1976, fun4a, fun4, bailey, 0, driver_device, 0, ROT0, "Bailey International", "Fun Four (Set 2) [TTL]", GAME_IS_SKELETON )

141
src/mame/drivers/fungames.c Normal file
View File

@ -0,0 +1,141 @@
/***************************************************************************
Fun Games discrete hardware games
Biplane (1975)
Biplane 4 (1976)
King
Race! (1976)
Take 5 (1975)
Take 7 (1975)
Tankers (1975)
***************************************************************************/
#include "emu.h"
#include "machine/rescap.h"
#include "machine/netlist.h"
#include "netlist/devices/net_lib.h"
#include "video/fixfreq.h"
#include "astring.h"
// copied by Pong, not accurate for this driver!
// start
#define MASTER_CLOCK 7159000
#define V_TOTAL (0x105+1) // 262
#define H_TOTAL (0x1C6+1) // 454
#define HBSTART (H_TOTAL)
#define HBEND (80)
#define VBSTART (V_TOTAL)
#define VBEND (16)
#define HRES_MULT (1)
fixedfreq_interface fixedfreq_mode_fungames = {
MASTER_CLOCK,
H_TOTAL-67,H_TOTAL-40,H_TOTAL-8,H_TOTAL,
V_TOTAL-22,V_TOTAL-19,V_TOTAL-12,V_TOTAL,
1, /* non-interlaced */
0.30
};
// end
class fungames_state : public driver_device
{
public:
fungames_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_video(*this, "fixfreq")
{
}
// devices
required_device<netlist_mame_device_t> m_maincpu;
required_device<fixedfreq_device> m_video;
protected:
// driver_device overrides
virtual void machine_start();
virtual void machine_reset();
virtual void video_start();
private:
};
static NETLIST_START(fungames)
SOLVER(Solver)
PARAM(Solver.FREQ, 48000)
PARAM(Solver.ACCURACY, 1e-4) // works and is sufficient
// schematics
//...
// NETDEV_ANALOG_CALLBACK(sound_cb, sound, exidyttl_state, sound_cb, "")
// NETDEV_ANALOG_CALLBACK(video_cb, videomix, fixedfreq_device, update_vid, "fixfreq")
NETLIST_END()
void fungames_state::machine_start()
{
}
void fungames_state::machine_reset()
{
}
void fungames_state::video_start()
{
}
static MACHINE_CONFIG_START( fungames, fungames_state )
/* basic machine hardware */
MCFG_DEVICE_ADD("maincpu", NETLIST_CPU, NETLIST_CLOCK)
MCFG_NETLIST_SETUP(fungames)
/* video hardware */
MCFG_FIXFREQ_ADD("fixfreq", "screen", fixedfreq_mode_fungames)
MACHINE_CONFIG_END
/***************************************************************************
Game driver(s)
***************************************************************************/
ROM_START( biplane4 )
ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASE00 )
ROM_REGION( 0x0400, "roms", ROMREGION_ERASE00 )
ROM_LOAD( "biplane.p", 0x0000, 0x0200, CRC(0b3af146) SHA1(de7e4bffd4ca3baf3fe6017609d1b11fa9fc356a) )
ROM_LOAD( "biplane.r", 0x0000, 0x0200, CRC(121eee0c) SHA1(fbdbc4da94dd9dba5903a6df321a9c2319f86dbd) )
ROM_LOAD( "biplane.s", 0x0000, 0x0200, CRC(a57a1c43) SHA1(64d8e609415bc0fe51581bfea2e777106505c761) )
ROM_LOAD( "biplane.t", 0x0000, 0x0200, CRC(40415f2a) SHA1(8a5d4cfb7713fc42ab12e3af61230255c5dffbf2) )
ROM_END
ROM_START( take5 )
ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASE00 )
ROM_REGION( 0x0200, "roms", ROMREGION_ERASE00 )
ROM_LOAD( "take5.d2", 0x0000, 0x0200, CRC(fa6afc19) SHA1(9735e13b20e698d1b72cbff5783a06f260ff2bba) )
ROM_LOAD( "take5.e2", 0x0000, 0x0200, CRC(1a41d642) SHA1(925010aa953cea2ab5bf0e9148f25b13d0a0e52e) )
ROM_LOAD( "take5.i2", 0x0000, 0x0200, CRC(25ff4f82) SHA1(6b3b9071591ca5126cce556007c12e4bf2cb3d51) )
ROM_END
GAME( 1976, biplane4, 0, fungames, 0, driver_device, 0, ROT0, "Fun Games", "Biplane 4 [TTL]", GAME_IS_SKELETON )
GAME( 1975, take5, 0, fungames, 0, driver_device, 0, ROT0, "Fun Games", "Take 5 [TTL]", GAME_IS_SKELETON )

View File

@ -12341,11 +12341,18 @@ outlaw // (c) 1976 Atari
sharkjaw // (c) 1975 Atari
stntcycl // (c) 1976 Atari
tank // (c) 1974 Atari
tv21 // (c) 197? A-1 Supply
tv21_3 // (c) 197? A-1 Supply
tvpoker // (c) 197? A-1 Supply
sburners // (c) 1975 Allied Leisure
fun4 // (c) 1976 Bailey
fun4a // (c) 1976 Bailey
destdrby // (c) 1976 Chicago Coin
avenger // (c) 1975 Electra
attckexd // (c) 1977 Exidy
deathrac // (c) 1976 Exidy
biplane4 // (c) 1976 Fun Games
take5 // (c) 1975 Fun Games
bballrmt // (c) 1974 Ramtek
cleanswp // (c) 1974 Ramtek
vollyrmt // (c) 1973 Ramtek

View File

@ -2033,6 +2033,7 @@ $(MAMEOBJ)/misc.a: \
$(DRIVERS)/3x3puzzl.o \
$(DRIVERS)/4enraya.o $(VIDEO)/4enraya.o \
$(DRIVERS)/5clown.o \
$(DRIVERS)/a1supply.o \
$(DRIVERS)/acefruit.o \
$(DRIVERS)/aces1.o \
$(DRIVERS)/acesp.o \
@ -2049,6 +2050,7 @@ $(MAMEOBJ)/misc.a: \
$(DRIVERS)/attckufo.o \
$(DRIVERS)/avt.o \
$(DRIVERS)/aztarac.o $(AUDIO)/aztarac.o $(VIDEO)/aztarac.o \
$(DRIVERS)/bailey.o \
$(DRIVERS)/beaminv.o \
$(DRIVERS)/belatra.o \
$(DRIVERS)/bgt.o \
@ -2107,6 +2109,7 @@ $(MAMEOBJ)/misc.a: \
$(DRIVERS)/fortecar.o \
$(DRIVERS)/fresh.o \
$(DRIVERS)/freekick.o $(VIDEO)/freekick.o \
$(DRIVERS)/fungames.o \
$(DRIVERS)/funkball.o \
$(DRIVERS)/gambl186.o \
$(DRIVERS)/galaxi.o \