mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00
fixed pong (nw)
This commit is contained in:
parent
a0829452f1
commit
79e69182cc
@ -1060,9 +1060,12 @@ files {
|
|||||||
MAME_DIR .. "src/mame/audio/orbit.cpp",
|
MAME_DIR .. "src/mame/audio/orbit.cpp",
|
||||||
MAME_DIR .. "src/mame/video/orbit.cpp",
|
MAME_DIR .. "src/mame/video/orbit.cpp",
|
||||||
MAME_DIR .. "src/mame/drivers/pong.cpp",
|
MAME_DIR .. "src/mame/drivers/pong.cpp",
|
||||||
MAME_DIR .. "src/mame/drivers/nl_pong.cpp",
|
MAME_DIR .. "src/mame/machine/nl_pong.cpp",
|
||||||
MAME_DIR .. "src/mame/drivers/nl_pongd.cpp",
|
MAME_DIR .. "src/mame/machine/nl_pong.h",
|
||||||
MAME_DIR .. "src/mame/drivers/nl_breakout.cpp",
|
MAME_DIR .. "src/mame/machine/nl_pongd.cpp",
|
||||||
|
MAME_DIR .. "src/mame/machine/nl_pongd.h",
|
||||||
|
MAME_DIR .. "src/mame/machine/nl_breakout.cpp",
|
||||||
|
MAME_DIR .. "src/mame/machine/nl_breakout.h",
|
||||||
MAME_DIR .. "src/mame/drivers/poolshrk.cpp",
|
MAME_DIR .. "src/mame/drivers/poolshrk.cpp",
|
||||||
MAME_DIR .. "src/mame/includes/poolshrk.h",
|
MAME_DIR .. "src/mame/includes/poolshrk.h",
|
||||||
MAME_DIR .. "src/mame/audio/poolshrk.cpp",
|
MAME_DIR .. "src/mame/audio/poolshrk.cpp",
|
||||||
|
@ -103,9 +103,12 @@ function createProjects_mame_nl(_target, _subtarget)
|
|||||||
|
|
||||||
files{
|
files{
|
||||||
MAME_DIR .. "src/mame/drivers/pong.cpp",
|
MAME_DIR .. "src/mame/drivers/pong.cpp",
|
||||||
MAME_DIR .. "src/mame/drivers/nl_pong.cpp",
|
MAME_DIR .. "src/mame/machine/nl_pong.cpp",
|
||||||
MAME_DIR .. "src/mame/drivers/nl_pongd.cpp",
|
MAME_DIR .. "src/mame/machine/nl_pong.h",
|
||||||
MAME_DIR .. "src/mame/drivers/nl_breakout.cpp",
|
MAME_DIR .. "src/mame/machine/nl_pongd.cpp",
|
||||||
|
MAME_DIR .. "src/mame/machine/nl_pongd.h",
|
||||||
|
MAME_DIR .. "src/mame/machine/nl_breakout.cpp",
|
||||||
|
MAME_DIR .. "src/mame/machine/nl_breakout.h",
|
||||||
|
|
||||||
MAME_DIR .. "src/mame/drivers/1942.cpp",
|
MAME_DIR .. "src/mame/drivers/1942.cpp",
|
||||||
MAME_DIR .. "src/mame/includes/1942.h",
|
MAME_DIR .. "src/mame/includes/1942.h",
|
||||||
@ -118,9 +121,9 @@ files{
|
|||||||
MAME_DIR .. "src/mame/includes/m62.h",
|
MAME_DIR .. "src/mame/includes/m62.h",
|
||||||
MAME_DIR .. "src/mame/video/m62.cpp",
|
MAME_DIR .. "src/mame/video/m62.cpp",
|
||||||
MAME_DIR .. "src/mame/audio/irem.cpp",
|
MAME_DIR .. "src/mame/audio/irem.cpp",
|
||||||
MAME_DIR .. "src/mame/audio/nl_kidniki.cpp",
|
|
||||||
MAME_DIR .. "src/mame/audio/irem.h",
|
MAME_DIR .. "src/mame/audio/irem.h",
|
||||||
|
MAME_DIR .. "src/mame/audio/nl_kidniki.cpp",
|
||||||
|
MAME_DIR .. "src/mame/audio/nl_kidniki.h",
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -50,6 +50,9 @@ TODO: Superpong is believed to use the Pong (Rev E) PCB with some minor modifica
|
|||||||
#include "netlist/devices/net_lib.h"
|
#include "netlist/devices/net_lib.h"
|
||||||
#include "sound/dac.h"
|
#include "sound/dac.h"
|
||||||
#include "video/fixfreq.h"
|
#include "video/fixfreq.h"
|
||||||
|
#include "machine/nl_breakout.h"
|
||||||
|
#include "machine/nl_pong.h"
|
||||||
|
#include "machine/nl_pongd.h"
|
||||||
|
|
||||||
#include "breakout.lh"
|
#include "breakout.lh"
|
||||||
|
|
||||||
@ -118,10 +121,6 @@ enum input_changed_enum
|
|||||||
IC_VR2
|
IC_VR2
|
||||||
};
|
};
|
||||||
|
|
||||||
NETLIST_EXTERNAL(pongdoubles)
|
|
||||||
NETLIST_EXTERNAL(pong_fast)
|
|
||||||
NETLIST_EXTERNAL(breakout)
|
|
||||||
|
|
||||||
class ttl_mono_state : public driver_device
|
class ttl_mono_state : public driver_device
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
4
src/mame/machine/nl_breakout.h
Normal file
4
src/mame/machine/nl_breakout.h
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
// license:GPL-2.0+
|
||||||
|
// copyright-holders:DICE Team,Couriersud
|
||||||
|
|
||||||
|
NETLIST_EXTERNAL(breakout)
|
4
src/mame/machine/nl_pong.h
Normal file
4
src/mame/machine/nl_pong.h
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
// license:GPL-2.0+
|
||||||
|
// copyright-holders: Couriersud
|
||||||
|
|
||||||
|
NETLIST_EXTERNAL(pong_fast)
|
4
src/mame/machine/nl_pongd.h
Normal file
4
src/mame/machine/nl_pongd.h
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
// license:GPL-2.0+
|
||||||
|
// copyright-holders:DICE Team,couriersud
|
||||||
|
|
||||||
|
NETLIST_EXTERNAL(pongdoubles)
|
Loading…
Reference in New Issue
Block a user