Previous 199869 Revisions Next

r19514 Thursday 13th December, 2012 at 11:09:57 UTC by Miodrag Milanović
specmx: no need for default color (nw)
[src/mess/machine]special.c
[src/mess/video]special.c

trunk/src/mess/machine/special.c
r19513r19514
235235MACHINE_RESET_MEMBER(special_state,specimx)
236236{
237237   specimx_set_bank(2, 0); // Initiali load ROM disk
238   m_specimx_color = 0x70;
239238   machine().scheduler().timer_set(attotime::zero, timer_expired_delegate(FUNC(special_state::setup_pit8253_gates),this));
240239   device_t *fdc = machine().device("wd1793");
241240   wd17xx_set_pause_time(fdc,12);
trunk/src/mess/video/special.c
r19513r19514
8282VIDEO_START_MEMBER(special_state,specimx)
8383{
8484   m_specimx_colorram = auto_alloc_array(machine(), UINT8, 0x3000);
85   memset(m_specimx_colorram,0x70,0x3000);
8685}
8786
8887UINT32 special_state::screen_update_specimx(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)

Previous 199869 Revisions Next


© 1997-2024 The MAME Team