mirror of
https://github.com/holub/mame
synced 2025-04-20 23:42:22 +03:00
(MESS) nes.xml: added a couple of new multigame dumps using
OneBus PCB. [TeamEurope]
This commit is contained in:
parent
76ecd996bf
commit
474ff69935
32
hash/nes.xml
32
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>
|
||||
|
@ -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);
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
|
@ -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 );
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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 );
|
||||
|
@ -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 );
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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 );
|
||||
|
Loading…
Reference in New Issue
Block a user