diff --git a/src/emu/machine/serflash.c b/src/emu/machine/serflash.c index 5fa7c950a95..9de0d2d8de7 100644 --- a/src/emu/machine/serflash.c +++ b/src/emu/machine/serflash.c @@ -37,8 +37,6 @@ void serflash_device::device_start() m_length = machine().root_device().memregion( tag() )->bytes(); m_region = machine().root_device().memregion( tag() )->base(); - printf("bytes %d\n", m_length); - m_flashwritemap = auto_alloc_array(machine(), UINT8, m_length / FLASH_PAGE_SIZE); memset(m_flashwritemap, 0, m_length / FLASH_PAGE_SIZE);