mirror of
https://github.com/holub/mame
synced 2025-07-03 17:08:39 +03:00
i82355: Use standard EISA board name format (nw)
This commit is contained in:
parent
c4e4778015
commit
40f4e19dbf
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user