| 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 |
| r19513 | r19514 | |
|---|---|---|
| 235 | 235 | MACHINE_RESET_MEMBER(special_state,specimx) |
| 236 | 236 | { |
| 237 | 237 | specimx_set_bank(2, 0); // Initiali load ROM disk |
| 238 | m_specimx_color = 0x70; | |
| 239 | 238 | machine().scheduler().timer_set(attotime::zero, timer_expired_delegate(FUNC(special_state::setup_pit8253_gates),this)); |
| 240 | 239 | device_t *fdc = machine().device("wd1793"); |
| 241 | 240 | wd17xx_set_pause_time(fdc,12); |
| r19513 | r19514 | |
|---|---|---|
| 82 | 82 | VIDEO_START_MEMBER(special_state,specimx) |
| 83 | 83 | { |
| 84 | 84 | m_specimx_colorram = auto_alloc_array(machine(), UINT8, 0x3000); |
| 85 | memset(m_specimx_colorram,0x70,0x3000); | |
| 86 | 85 | } |
| 87 | 86 | |
| 88 | 87 | UINT32 special_state::screen_update_specimx(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) |
| Previous | 199869 Revisions | Next |