diff options
-rw-r--r-- | hash/nes.xml | 32 | ||||
-rw-r--r-- | src/emu/softlist.c | 6 | ||||
-rw-r--r-- | src/emu/softlist.h | 4 | ||||
-rw-r--r-- | src/emu/sound/cdp1863.c | 4 | ||||
-rw-r--r-- | src/emu/sound/cdp1863.h | 4 | ||||
-rw-r--r-- | src/emu/sound/lmc1992.h | 3 | ||||
-rw-r--r-- | src/emu/video/hd44102.c | 4 | ||||
-rw-r--r-- | src/emu/video/hd44102.h | 4 | ||||
-rw-r--r-- | src/emu/video/msm6255.h | 3 | ||||
-rw-r--r-- | src/emu/video/upd7227.c | 4 | ||||
-rw-r--r-- | src/emu/video/upd7227.h | 4 |
11 files changed, 49 insertions, 23 deletions
diff --git a/hash/nes.xml b/hash/nes.xml index 16b47f6b28e..5d6494e8dff 100644 --- a/hash/nes.xml +++ b/hash/nes.xml @@ -78950,6 +78950,38 @@ that the real dumps might surface --> </part> </software> + <software name="sarc110" supported="no"> + <description>Super Arcade 110</description> + <year>19??</year> + <publisher><unknown></publisher> + <part name="cart" interface="nes_cart"> + <feature name="slot" value="onebus" /> + <feature name="pcb" value="UNL-OneBus" /> + <dataarea name="prg" size="4194304"> + <rom name="ic1.prg" size="4194304" crc="de76f71f" sha1="ff6b37a76c6463af7ae901918fc008b4a2863951" offset="0" status="baddump" /> + </dataarea> + <!-- 8k VRAM on cartridge --> + <dataarea name="vram" size="8192"> + </dataarea> + </part> + </software> + + <software name="sarc110a" cloneof="sarc110" supported="no"> + <description>Super Arcade 110 (Alt)</description> + <year>19??</year> + <publisher><unknown></publisher> + <part name="cart" interface="nes_cart"> + <feature name="slot" value="onebus" /> + <feature name="pcb" value="UNL-OneBus" /> + <dataarea name="prg" size="4194304"> + <rom name="ic1_ver2.prg" size="4194304" crc="b97a0dc7" sha1="bace32d73184df914113de5336e29a7a6f4c03fa" offset="0" status="baddump" /> + </dataarea> + <!-- 8k VRAM on cartridge --> + <dataarea name="vram" size="8192"> + </dataarea> + </part> + </software> + <software name="mc_gx121" supported="no"> <description>Games Xplosion 121 in 1</description> 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 ); |