mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +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/video/orbit.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/pong.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/nl_pong.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/nl_pongd.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/nl_breakout.cpp",
|
||||
MAME_DIR .. "src/mame/machine/nl_pong.cpp",
|
||||
MAME_DIR .. "src/mame/machine/nl_pong.h",
|
||||
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/includes/poolshrk.h",
|
||||
MAME_DIR .. "src/mame/audio/poolshrk.cpp",
|
||||
|
@ -86,8 +86,8 @@ function createProjects_mame_nl(_target, _subtarget)
|
||||
targetsubdir(_target .."_" .. _subtarget)
|
||||
kind (LIBTYPE)
|
||||
uuid (os.uuid("drv-mame-nl"))
|
||||
addprojectflags()
|
||||
precompiledheaders()
|
||||
addprojectflags()
|
||||
precompiledheaders()
|
||||
|
||||
includedirs {
|
||||
MAME_DIR .. "src/osd",
|
||||
@ -103,9 +103,12 @@ function createProjects_mame_nl(_target, _subtarget)
|
||||
|
||||
files{
|
||||
MAME_DIR .. "src/mame/drivers/pong.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/nl_pong.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/nl_pongd.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/nl_breakout.cpp",
|
||||
MAME_DIR .. "src/mame/machine/nl_pong.cpp",
|
||||
MAME_DIR .. "src/mame/machine/nl_pong.h",
|
||||
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/includes/1942.h",
|
||||
@ -114,13 +117,13 @@ files{
|
||||
MAME_DIR .. "src/mame/includes/popeye.h",
|
||||
MAME_DIR .. "src/mame/video/popeye.cpp",
|
||||
|
||||
MAME_DIR .. "src/mame/drivers/m62.cpp",
|
||||
MAME_DIR .. "src/mame/includes/m62.h",
|
||||
MAME_DIR .. "src/mame/video/m62.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/drivers/m62.cpp",
|
||||
MAME_DIR .. "src/mame/includes/m62.h",
|
||||
MAME_DIR .. "src/mame/video/m62.cpp",
|
||||
MAME_DIR .. "src/mame/audio/irem.cpp",
|
||||
MAME_DIR .. "src/mame/audio/irem.h",
|
||||
MAME_DIR .. "src/mame/audio/nl_kidniki.cpp",
|
||||
MAME_DIR .. "src/mame/audio/nl_kidniki.h",
|
||||
}
|
||||
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 "sound/dac.h"
|
||||
#include "video/fixfreq.h"
|
||||
#include "machine/nl_breakout.h"
|
||||
#include "machine/nl_pong.h"
|
||||
#include "machine/nl_pongd.h"
|
||||
|
||||
#include "breakout.lh"
|
||||
|
||||
@ -118,10 +121,6 @@ enum input_changed_enum
|
||||
IC_VR2
|
||||
};
|
||||
|
||||
NETLIST_EXTERNAL(pongdoubles)
|
||||
NETLIST_EXTERNAL(pong_fast)
|
||||
NETLIST_EXTERNAL(breakout)
|
||||
|
||||
class ttl_mono_state : public driver_device
|
||||
{
|
||||
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