mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
airraid: correct prom file size
This commit is contained in:
parent
b8c49dbf9d
commit
0efbea53a8
@ -494,8 +494,8 @@ ROM_START( airraid )
|
||||
ROM_LOAD( "4.7f", 0x08000, 0x08000, CRC(3cd715b4) SHA1(da735fb5d262908ddf7ed7dacdea68899f1723ff) )
|
||||
|
||||
ROM_REGION( 0x0200, "proms", 0 ) // this PCB type has different PROMs when compared to the cshootert hardware PCB where they were dumped
|
||||
ROM_LOAD( "pr.c19", 0x0000, 0x0200, NO_DUMP )
|
||||
ROM_LOAD( "6308.a13", 0x0000, 0x0100, NO_DUMP )
|
||||
ROM_LOAD( "pr.c19", 0x0000, 0x0100, NO_DUMP )
|
||||
ROM_LOAD( "6308.a13", 0x0100, 0x0100, NO_DUMP )
|
||||
|
||||
ROM_REGION( 0x02000, "airraid_vid:tx_gfx", 0 ) // TX Layer
|
||||
ROM_LOAD( "3.13e", 0x00000, 0x02000, CRC(672ec0e8) SHA1(a11cd90d6494251ceee3bc7c72f4e7b1580b77e2) )
|
||||
@ -575,8 +575,8 @@ ROM_START( cshooter )
|
||||
ROM_LOAD( "4.7f", 0x08000, 0x08000, CRC(3cd715b4) SHA1(da735fb5d262908ddf7ed7dacdea68899f1723ff) ) // 4.g8
|
||||
|
||||
ROM_REGION( 0x0200, "proms", 0 )
|
||||
ROM_LOAD( "82s129.c19", 0x0000, 0x0200, CRC(dcd4e66d) SHA1(17f53c7905c20f0c6c0a74ab519b8e4a442835c3) )
|
||||
ROM_LOAD( "63s281.a13", 0x0000, 0x0100, CRC(208d17ca) SHA1(a77d56337bcac8d9a7bc3411239dfb3045e069ec) )
|
||||
ROM_LOAD( "82s129.c19", 0x0000, 0x0100, CRC(dcd4e66d) SHA1(17f53c7905c20f0c6c0a74ab519b8e4a442835c3) )
|
||||
ROM_LOAD( "63s281.a13", 0x0100, 0x0100, CRC(208d17ca) SHA1(a77d56337bcac8d9a7bc3411239dfb3045e069ec) )
|
||||
|
||||
ROM_REGION( 0x02000, "airraid_vid:tx_gfx", 0 ) // TX Layer
|
||||
ROM_LOAD( "3.13e", 0x00000, 0x02000, CRC(704c26d7) SHA1(e5964f409cbc2c4752e3969f3e84ace08d5ad9cb) )
|
||||
|
@ -11,21 +11,21 @@
|
||||
|
||||
DEFINE_DEVICE_TYPE(AIRRAID_VIDEO, airraid_video_device, "airraid_vid", "Seibu Air Raid Video")
|
||||
|
||||
airraid_video_device::airraid_video_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: device_t(mconfig, AIRRAID_VIDEO, tag, owner, clock),
|
||||
m_gfxdecode(*this, "gfxdecode"),
|
||||
m_palette(*this, "^palette"),
|
||||
m_screen(*this, "screen"),
|
||||
m_tx_clut(*this, "tx_clut"),
|
||||
m_fg_clut(*this, "fg_clut"),
|
||||
m_bg_clut(*this, "bg_clut"),
|
||||
m_spr_clut(*this, "spr_clut"),
|
||||
m_fgmap(*this, "fg_map"),
|
||||
m_bgmap(*this, "bg_map"),
|
||||
m_sprite_ram(*this, "^sprite_ram"),
|
||||
m_txram(*this,"^txram"),
|
||||
m_vregs(*this,"^vregs"),
|
||||
m_hw(0x09)
|
||||
airraid_video_device::airraid_video_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
|
||||
device_t(mconfig, AIRRAID_VIDEO, tag, owner, clock),
|
||||
m_gfxdecode(*this, "gfxdecode"),
|
||||
m_palette(*this, "^palette"),
|
||||
m_screen(*this, "screen"),
|
||||
m_tx_clut(*this, "tx_clut"),
|
||||
m_fg_clut(*this, "fg_clut"),
|
||||
m_bg_clut(*this, "bg_clut"),
|
||||
m_spr_clut(*this, "spr_clut"),
|
||||
m_fgmap(*this, "fg_map"),
|
||||
m_bgmap(*this, "bg_map"),
|
||||
m_sprite_ram(*this, "^sprite_ram"),
|
||||
m_txram(*this,"^txram"),
|
||||
m_vregs(*this,"^vregs"),
|
||||
m_hw(0x09)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -13,8 +13,7 @@
|
||||
|
||||
DECLARE_DEVICE_TYPE(AIRRAID_VIDEO, airraid_video_device)
|
||||
|
||||
class airraid_video_device : public device_t
|
||||
/* public device_video_interface */
|
||||
class airraid_video_device : public device_t
|
||||
{
|
||||
public:
|
||||
// construction/destruction
|
||||
|
Loading…
Reference in New Issue
Block a user