Some quick cleanup (nw)

This commit is contained in:
R. Belmont 2012-10-28 02:43:20 +00:00
parent f5d08006f0
commit 0cbf32b7ad

View File

@ -293,7 +293,7 @@ WRITE32_MEMBER( nubus_xceed30hr_device::xceed30hr_w )
break; break;
default: default:
printf("xceed30hr_w: %08x @ %x, mask %08x (PC=%x)\n", data, offset, mem_mask, space.device().safe_pc()); // printf("xceed30hr_w: %08x @ %x, mask %08x (PC=%x)\n", data, offset, mem_mask, space.device().safe_pc());
break; break;
} }
} }
@ -304,7 +304,7 @@ READ32_MEMBER( nubus_xceed30hr_device::xceed30hr_r )
if (offset == 0x80008) if (offset == 0x80008)
{ {
m_toggle ^= 0x80; m_toggle ^= 0x80;
return m_toggle | 0x33333333; return m_toggle;
} }
return 0; return 0;