trunk/src/mess/drivers/pc9801.c
| r21756 | r21757 | |
| 3413 | 3413 | |
| 3414 | 3414 | MACHINE_RESET_MEMBER(pc9801_state,pc9801_common) |
| 3415 | 3415 | { |
| 3416 | memset(m_tvram, 0, sizeof(UINT8) * 0x4000); |
| 3416 | 3417 | /* this looks like to be some kind of backup ram, system will boot with green colors otherwise */ |
| 3417 | 3418 | { |
| 3418 | 3419 | int i; |
| r21756 | r21757 | |
| 3478 | 3479 | m_access_ctrl = 0; |
| 3479 | 3480 | m_keyb_press = 0xff; // temp kludge, for PC-9821 booting |
| 3480 | 3481 | // m_has_opna = machine().root_device().ioport("SOUND_CONFIG")->read() & 1; |
| 3482 | memset(m_work_ram, 0, sizeof(UINT8) * 0xa0000); |
| 3481 | 3483 | } |
| 3482 | 3484 | |
| 3483 | 3485 | MACHINE_RESET_MEMBER(pc9801_state,pc9821) |