From 40f4e19dbf440e3687ffcf4f3dc66a8d18da1aab Mon Sep 17 00:00:00 2001 From: AJR Date: Mon, 13 May 2019 09:45:59 -0400 Subject: [PATCH] i82355: Use standard EISA board name format (nw) --- src/devices/machine/i82355.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/devices/machine/i82355.cpp b/src/devices/machine/i82355.cpp index d37d44d2ebe..18741710489 100644 --- a/src/devices/machine/i82355.cpp +++ b/src/devices/machine/i82355.cpp @@ -280,13 +280,12 @@ void i82355_device::global_config(u8 data) void i82355_device::identify_board() { - logerror("%s: Board identified as %c%c%c (%04X) product %02X.%02X\n", machine().describe_context(), + // Use standard format for naming .CFG and .OVL files + logerror("%s: EISA board identified as %c%c%c%04X\n", machine().describe_context(), ((m_id.w.h & 0x7c00) >> 10) + 'A' - 1, ((m_id.w.h & 0x03e0) >> 5) + 'A' - 1, (m_id.w.h & 0x001f) + 'A' - 1, - m_id.w.h, - m_id.b.h, - m_id.b.l); + m_id.w.l); }