summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2014-10-13 05:58:14 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2014-10-13 05:58:14 +0000
commit474ff69935b95c20406f5121ecbf568ee77be980 (patch)
treed3a7b072ebfed48870ff982af1871e6deafb063e /src
parent76ecd996bf52813353cb49e08c9539ff4a0025dc (diff)
(MESS) nes.xml: added a couple of new multigame dumps using
OneBus PCB. [TeamEurope]
Diffstat (limited to 'src')
-rw-r--r--src/emu/softlist.c6
-rw-r--r--src/emu/softlist.h4
-rw-r--r--src/emu/sound/cdp1863.c4
-rw-r--r--src/emu/sound/cdp1863.h4
-rw-r--r--src/emu/sound/lmc1992.h3
-rw-r--r--src/emu/video/hd44102.c4
-rw-r--r--src/emu/video/hd44102.h4
-rw-r--r--src/emu/video/msm6255.h3
-rw-r--r--src/emu/video/upd7227.c4
-rw-r--r--src/emu/video/upd7227.h4
10 files changed, 17 insertions, 23 deletions
diff --git a/src/emu/softlist.c b/src/emu/softlist.c
index ef80e2dd2bd..761a1ef1dfb 100644
--- a/src/emu/softlist.c
+++ b/src/emu/softlist.c
@@ -371,11 +371,11 @@ software_list_device::software_list_device(const machine_config &mconfig, const
//-------------------------------------------------
-// static_set_interface - configuration helper
-// to set the interface
+// static_set_type - configuration helper
+// to set the list type
//-------------------------------------------------
-void software_list_device::static_set_config(device_t &device, const char *list, softlist_type list_type)
+void software_list_device::static_set_type(device_t &device, const char *list, softlist_type list_type)
{
software_list_device &swlistdev = downcast<software_list_device &>(device);
swlistdev.m_list_name.cpy(list);
diff --git a/src/emu/softlist.h b/src/emu/softlist.h
index b88fabafbf1..2d736039d82 100644
--- a/src/emu/softlist.h
+++ b/src/emu/softlist.h
@@ -36,7 +36,7 @@ enum softlist_type
//**************************************************************************
#define MCFG_SOFTWARE_LIST_CONFIG(_list,_list_type) \
- software_list_device::static_set_config(*device, _list, _list_type);
+ software_list_device::static_set_type(*device, _list, _list_type);
#define MCFG_SOFTWARE_LIST_ADD( _tag, _list ) \
MCFG_DEVICE_ADD( _tag, SOFTWARE_LIST, 0 ) \
@@ -190,7 +190,7 @@ public:
software_list_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// inline configuration helpers
- static void static_set_config(device_t &device, const char *list, softlist_type list_type);
+ static void static_set_type(device_t &device, const char *list, softlist_type list_type);
static void static_set_filter(device_t &device, const char *filter);
// getters
diff --git a/src/emu/sound/cdp1863.c b/src/emu/sound/cdp1863.c
index 1fde3cf4ca6..253d6a4238e 100644
--- a/src/emu/sound/cdp1863.c
+++ b/src/emu/sound/cdp1863.c
@@ -60,10 +60,10 @@ cdp1863_device::cdp1863_device(const machine_config &mconfig, const char *tag, d
//-------------------------------------------------
-// static_set_config - configuration helper
+// static_set_clock2 - configuration helper
//-------------------------------------------------
-void cdp1863_device::static_set_config(device_t &device, int clock2)
+void cdp1863_device::static_set_clock2(device_t &device, int clock2)
{
cdp1863_device &cdp1863 = downcast<cdp1863_device &>(device);
diff --git a/src/emu/sound/cdp1863.h b/src/emu/sound/cdp1863.h
index 679cef84d58..7b6494daa56 100644
--- a/src/emu/sound/cdp1863.h
+++ b/src/emu/sound/cdp1863.h
@@ -35,7 +35,7 @@
#define MCFG_CDP1863_ADD(_tag, _clock, _clock2) \
MCFG_DEVICE_ADD(_tag, CDP1863, _clock) \
- cdp1863_device::static_set_config(*device, _clock2);
+ cdp1863_device::static_set_clock2(*device, _clock2);
@@ -53,7 +53,7 @@ public:
cdp1863_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// inline configuration helpers
- static void static_set_config(device_t &device, int clock2);
+ static void static_set_clock2(device_t &device, int clock2);
DECLARE_WRITE8_MEMBER( str_w );
void str_w(UINT8 data);
diff --git a/src/emu/sound/lmc1992.h b/src/emu/sound/lmc1992.h
index 9f6d29a1c9b..3a8c978ebd4 100644
--- a/src/emu/sound/lmc1992.h
+++ b/src/emu/sound/lmc1992.h
@@ -74,9 +74,6 @@ public:
// construction/destruction
lmc1992_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
- // inline configuration helpers
- static void static_set_config(device_t &device, int clock2);
-
DECLARE_WRITE_LINE_MEMBER( clock_w );
DECLARE_WRITE_LINE_MEMBER( data_w );
DECLARE_WRITE_LINE_MEMBER( enable_w );
diff --git a/src/emu/video/hd44102.c b/src/emu/video/hd44102.c
index ab59168901a..f3a8c0c714d 100644
--- a/src/emu/video/hd44102.c
+++ b/src/emu/video/hd44102.c
@@ -80,10 +80,10 @@ hd44102_device::hd44102_device(const machine_config &mconfig, const char *tag, d
//-------------------------------------------------
-// static_set_config - configuration helper
+// static_set_offsets - configuration helper
//-------------------------------------------------
-void hd44102_device::static_set_config(device_t &device, int sx, int sy)
+void hd44102_device::static_set_offsets(device_t &device, int sx, int sy)
{
hd44102_device &hd44102 = downcast<hd44102_device &>(device);
diff --git a/src/emu/video/hd44102.h b/src/emu/video/hd44102.h
index 3491aefe615..19b5262735c 100644
--- a/src/emu/video/hd44102.h
+++ b/src/emu/video/hd44102.h
@@ -23,7 +23,7 @@
#define MCFG_HD44102_ADD(_tag, _screen_tag, _sx, _sy) \
MCFG_DEVICE_ADD(_tag, HD44102, 0) \
MCFG_VIDEO_SET_SCREEN(_screen_tag) \
- hd44102_device::static_set_config(*device, _sx, _sy);
+ hd44102_device::static_set_offsets(*device, _sx, _sy);
@@ -41,7 +41,7 @@ public:
hd44102_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// inline configuration helpers
- static void static_set_config(device_t &device, int sx, int sy);
+ static void static_set_offsets(device_t &device, int sx, int sy);
DECLARE_READ8_MEMBER( read );
DECLARE_WRITE8_MEMBER( write );
diff --git a/src/emu/video/msm6255.h b/src/emu/video/msm6255.h
index 9d386ac1b7e..92706f374ac 100644
--- a/src/emu/video/msm6255.h
+++ b/src/emu/video/msm6255.h
@@ -32,9 +32,6 @@ public:
// construction/destruction
msm6255_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
- // inline configuration helpers
- static void static_set_config(device_t &device, int char_clock);
-
virtual DECLARE_ADDRESS_MAP(map, 8);
DECLARE_READ8_MEMBER( ir_r );
diff --git a/src/emu/video/upd7227.c b/src/emu/video/upd7227.c
index e46405baa85..4448c925cc5 100644
--- a/src/emu/video/upd7227.c
+++ b/src/emu/video/upd7227.c
@@ -56,10 +56,10 @@ upd7227_device::upd7227_device(const machine_config &mconfig, const char *tag, d
//-------------------------------------------------
-// static_set_config - configuration helper
+// static_set_offsets - configuration helper
//-------------------------------------------------
-void upd7227_device::static_set_config(device_t &device, int sx, int sy)
+void upd7227_device::static_set_offsets(device_t &device, int sx, int sy)
{
upd7227_device &upd7227 = downcast<upd7227_device &>(device);
diff --git a/src/emu/video/upd7227.h b/src/emu/video/upd7227.h
index ca1507948a4..cc6a27f7b31 100644
--- a/src/emu/video/upd7227.h
+++ b/src/emu/video/upd7227.h
@@ -22,7 +22,7 @@
#define MCFG_UPD7227_ADD(_tag, _sx, _sy) \
MCFG_DEVICE_ADD(_tag, UPD7227, 0) \
- upd7227_device::static_set_config(*device, _sx, _sy);
+ upd7227_device::static_set_offsets(*device, _sx, _sy);
@@ -40,7 +40,7 @@ public:
upd7227_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// inline configuration helpers
- static void static_set_config(device_t &device, int sx, int sy);
+ static void static_set_offsets(device_t &device, int sx, int sy);
DECLARE_WRITE_LINE_MEMBER( cs_w );
DECLARE_WRITE_LINE_MEMBER( cd_w );