Previous 199869 Revisions Next

r21747 Saturday 9th March, 2013 at 08:24:24 UTC by Oliver Stöneberg
(MESS) fixed uninitialized memory in src/mess/machine/mz700.c (nw)
[src/mess/machine]mz700.c

trunk/src/mess/machine/mz700.c
r21746r21747
8181   m_mz700_mode = TRUE;
8282
8383   m_videoram = auto_alloc_array(machine(), UINT8, 0x800);
84   memset(m_videoram, 0, sizeof(UINT8) * 0x800);
8485   m_colorram = auto_alloc_array(machine(), UINT8, 0x800);
86   memset(m_colorram, 0, sizeof(UINT8) * 0x800);
8587}
8688
8789DRIVER_INIT_MEMBER(mz_state,mz800)
r21746r21747
9193
9294   /* video ram */
9395   m_videoram = auto_alloc_array(machine(), UINT8, 0x4000);
96   memset(m_videoram, 0, sizeof(UINT8) * 0x4000);
9497   m_colorram = m_videoram + 0x800;
9598
9699   /* character generator ram */
97100   m_cgram = auto_alloc_array(machine(), UINT8, 0x1000);
101   memset(m_cgram, 0, sizeof(UINT8) * 0x1000);
98102}
99103
100104void mz_state::machine_start()

Previous 199869 Revisions Next


© 1997-2024 The MAME Team