x68k fix (nw)

This commit is contained in:
Miodrag Milanovic 2014-02-17 18:12:30 +00:00
parent a17309de58
commit 6eaf8f5560
2 changed files with 2 additions and 1 deletions

View File

@ -1949,6 +1949,7 @@ static MACHINE_CONFIG_FRAGMENT( x68000_base )
MCFG_SCREEN_SIZE(1096, 568) // inital setting
MCFG_SCREEN_VISIBLE_AREA(0, 767, 0, 511)
MCFG_SCREEN_UPDATE_DRIVER(x68k_state, screen_update_x68000)
MCFG_GFXDECODE_ADD("gfxdecode", empty)
MCFG_PALETTE_LENGTH(65536)
MCFG_PALETTE_INIT_OVERRIDE(x68k_state, x68000 )

View File

@ -311,7 +311,7 @@ public:
required_device<cpu_device> m_maincpu;
required_device<okim6258_device> m_okim6258;
required_device<ram_device> m_ram;
optional_device<gfxdecode_device> m_gfxdecode;
required_device<gfxdecode_device> m_gfxdecode;
bitmap_ind16* x68k_get_gfx_page(int pri,int type);
attotime prescale(int val);
void mfp_trigger_irq(int irq);