diff options
Diffstat (limited to 'src/mame/drivers/backfire.cpp')
-rw-r--r-- | src/mame/drivers/backfire.cpp | 91 |
1 files changed, 45 insertions, 46 deletions
diff --git a/src/mame/drivers/backfire.cpp b/src/mame/drivers/backfire.cpp index e853ce99dfc..e429a00e632 100644 --- a/src/mame/drivers/backfire.cpp +++ b/src/mame/drivers/backfire.cpp @@ -399,52 +399,51 @@ MACHINE_CONFIG_START(backfire_state::backfire) MCFG_SCREEN_UPDATE_DRIVER(backfire_state, screen_update_right) MCFG_SCREEN_PALETTE("palette") - MCFG_DEVICE_ADD("tilegen1", DECO16IC, 0) - MCFG_DECO16IC_SET_SCREEN("lscreen") - MCFG_DECO16IC_SPLIT(0) - MCFG_DECO16IC_PF1_SIZE(DECO_64x32) - MCFG_DECO16IC_PF2_SIZE(DECO_64x32) - MCFG_DECO16IC_PF1_TRANS_MASK(0x0f) - MCFG_DECO16IC_PF2_TRANS_MASK(0x0f) - MCFG_DECO16IC_PF1_COL_BANK(0x00) - MCFG_DECO16IC_PF2_COL_BANK(0x40) - MCFG_DECO16IC_PF1_COL_MASK(0x0f) - MCFG_DECO16IC_PF2_COL_MASK(0x0f) - MCFG_DECO16IC_BANK1_CB(backfire_state, bank_callback) - MCFG_DECO16IC_BANK2_CB(backfire_state, bank_callback) - MCFG_DECO16IC_PF12_8X8_BANK(0) - MCFG_DECO16IC_PF12_16X16_BANK(1) - MCFG_DECO16IC_GFXDECODE("gfxdecode") - - MCFG_DEVICE_ADD("tilegen2", DECO16IC, 0) - MCFG_DECO16IC_SET_SCREEN("lscreen") - MCFG_DECO16IC_SPLIT(0) - MCFG_DECO16IC_PF1_SIZE(DECO_64x32) - MCFG_DECO16IC_PF2_SIZE(DECO_64x32) - MCFG_DECO16IC_PF1_TRANS_MASK(0x0f) - MCFG_DECO16IC_PF2_TRANS_MASK(0x0f) - MCFG_DECO16IC_PF1_COL_BANK(0x10) - MCFG_DECO16IC_PF2_COL_BANK(0x50) - MCFG_DECO16IC_PF1_COL_MASK(0x0f) - MCFG_DECO16IC_PF2_COL_MASK(0x0f) - MCFG_DECO16IC_BANK1_CB(backfire_state, bank_callback) - MCFG_DECO16IC_BANK2_CB(backfire_state, bank_callback) - MCFG_DECO16IC_PF12_8X8_BANK(2) - MCFG_DECO16IC_PF12_16X16_BANK(3) - MCFG_DECO16IC_GFXDECODE("gfxdecode") - - MCFG_DEVICE_ADD("spritegen1", DECO_SPRITE, 0) - MCFG_VIDEO_SET_SCREEN("lscreen") - MCFG_DECO_SPRITE_GFX_REGION(4) - MCFG_DECO_SPRITE_PRIORITY_CB(backfire_state, pri_callback) - MCFG_DECO_SPRITE_GFXDECODE("gfxdecode") - - MCFG_DEVICE_ADD("spritegen2", DECO_SPRITE, 0) - MCFG_VIDEO_SET_SCREEN("rscreen") - MCFG_DECO_SPRITE_GFX_REGION(5) - MCFG_DECO_SPRITE_PRIORITY_CB(backfire_state, pri_callback) - MCFG_DECO_SPRITE_GFXDECODE("gfxdecode") - + DECO16IC(config, m_deco_tilegen[0], 0); + m_deco_tilegen[0]->set_screen(m_lscreen); + m_deco_tilegen[0]->set_split(0); + m_deco_tilegen[0]->set_pf1_size(DECO_64x32); + m_deco_tilegen[0]->set_pf2_size(DECO_64x32); + m_deco_tilegen[0]->set_pf1_trans_mask(0x0f); + m_deco_tilegen[0]->set_pf2_trans_mask(0x0f); + m_deco_tilegen[0]->set_pf1_col_bank(0x00); + m_deco_tilegen[0]->set_pf2_col_bank(0x40); + m_deco_tilegen[0]->set_pf1_col_mask(0x0f); + m_deco_tilegen[0]->set_pf2_col_mask(0x0f); + m_deco_tilegen[0]->set_bank1_callback(FUNC(backfire_state::bank_callback), this); + m_deco_tilegen[0]->set_bank2_callback(FUNC(backfire_state::bank_callback), this); + m_deco_tilegen[0]->set_pf12_8x8_bank(0); + m_deco_tilegen[0]->set_pf12_16x16_bank(1); + m_deco_tilegen[0]->set_gfxdecode_tag("gfxdecode"); + + DECO16IC(config, m_deco_tilegen[1], 0); + m_deco_tilegen[1]->set_screen(m_lscreen); + m_deco_tilegen[1]->set_split(0); + m_deco_tilegen[1]->set_pf1_size(DECO_64x32); + m_deco_tilegen[1]->set_pf2_size(DECO_64x32); + m_deco_tilegen[1]->set_pf1_trans_mask(0x0f); + m_deco_tilegen[1]->set_pf2_trans_mask(0x0f); + m_deco_tilegen[1]->set_pf1_col_bank(0x10); + m_deco_tilegen[1]->set_pf2_col_bank(0x50); + m_deco_tilegen[1]->set_pf1_col_mask(0x0f); + m_deco_tilegen[1]->set_pf2_col_mask(0x0f); + m_deco_tilegen[1]->set_bank1_callback(FUNC(backfire_state::bank_callback), this); + m_deco_tilegen[1]->set_bank2_callback(FUNC(backfire_state::bank_callback), this); + m_deco_tilegen[1]->set_pf12_8x8_bank(2); + m_deco_tilegen[1]->set_pf12_16x16_bank(3); + m_deco_tilegen[1]->set_gfxdecode_tag("gfxdecode"); + + DECO_SPRITE(config, m_sprgen[0], 0); + m_sprgen[0]->set_screen(m_lscreen); + m_sprgen[0]->set_gfx_region(4); + m_sprgen[0]->set_pri_callback(FUNC(backfire_state::pri_callback), this); + m_sprgen[0]->set_gfxdecode_tag("gfxdecode"); + + DECO_SPRITE(config, m_sprgen[1], 0); + m_sprgen[1]->set_screen("rscreen"); + m_sprgen[1]->set_gfx_region(5); + m_sprgen[1]->set_pri_callback(FUNC(backfire_state::pri_callback), this); + m_sprgen[1]->set_gfxdecode_tag("gfxdecode"); /* sound hardware */ SPEAKER(config, "lspeaker").front_left(); |