Previous 199869 Revisions Next

r31946 Saturday 6th September, 2014 at 10:39:27 UTC by Fabio Priuli
silenced debug residual. nw.
[src/emu/bus/a7800]rom.c

trunk/src/emu/bus/a7800/rom.c
r31945r31946
347347WRITE8_MEMBER(a78_rom_sg9_pokey_device::write_40xx)
348348{
349349   if (offset < 0x4000)
350   {
351      printf("write offs 0x%X data 0x%X\n", offset, data);
352350      m_pokey->write(space, offset & 0x0f, data);
353   }
354351   else if (offset < 0x8000)
355352      m_bank = (data & m_bank_mask) + 1;
356353}

Previous 199869 Revisions Next


© 1997-2024 The MAME Team