Skip to content

Commit 1b29f05

Browse files
authored
z80dma.cpp: Relaxed fatal error which were used for unknown commands catching. (#14627)
1 parent 983e4d1 commit 1b29f05

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/devices/machine/z80dma.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -850,10 +850,11 @@ void z80dma_device::write(u8 data)
850850
logerror("Z80DMA Unknown WR6 command %02x\n", data);
851851
}
852852
}
853-
else if (data == 0x8e) //newtype on Sharp X1, unknown purpose
854-
logerror("Z80DMA Unknown base register %02x\n", data);
855853
else
856-
fatalerror("Z80DMA '%s' Unknown base register %02x\n", tag(), data);
854+
{
855+
// 0x8e: newtype on Sharp X1, unknown purpose
856+
logerror("Z80DMA '%s' Unknown base register %02x\n", tag(), data);
857+
}
857858
m_cur_follow = 0;
858859
}
859860
else

0 commit comments

Comments
 (0)