Previous 199869 Revisions Next

r21757 Saturday 9th March, 2013 at 09:31:57 UTC by Oliver Stöneberg
(MESS) fixed uninitialized memory in src/mess/drivers/pc9801.c (nw)
[src/mess/drivers]pc9801.c

trunk/src/mess/drivers/pc9801.c
r21756r21757
34133413
34143414MACHINE_RESET_MEMBER(pc9801_state,pc9801_common)
34153415{
3416   memset(m_tvram, 0, sizeof(UINT8) * 0x4000);
34163417   /* this looks like to be some kind of backup ram, system will boot with green colors otherwise */
34173418   {
34183419      int i;
r21756r21757
34783479   m_access_ctrl = 0;
34793480   m_keyb_press = 0xff; // temp kludge, for PC-9821 booting
34803481//  m_has_opna = machine().root_device().ioport("SOUND_CONFIG")->read() & 1;
3482   memset(m_work_ram, 0, sizeof(UINT8) * 0xa0000);
34813483}
34823484
34833485MACHINE_RESET_MEMBER(pc9801_state,pc9821)

Previous 199869 Revisions Next


© 1997-2024 The MAME Team