mirror of
https://github.com/holub/mame
synced 2025-07-02 00:29:37 +03:00
at_keybc: logging fix (nw)
This commit is contained in:
parent
5a79f3f1fb
commit
ec071abd95
@ -150,7 +150,7 @@ uint8_t at_kbc_device_base::status_r()
|
||||
u8 const data = m_mcu->upi41_master_r(machine().dummy_space(), 1U);
|
||||
LOGMASKED(LOG_STATUS, "status_r 0x%02x%s%s%s%s%s%s%s%s (%s)\n", data,
|
||||
BIT(data, 7) ? " PER" : "", BIT(data, 6) ? " RTO" : "",
|
||||
BIT(data, 5) ? " TTO" : "", BIT(data, 4) ? " INH" : "",
|
||||
BIT(data, 5) ? " TTO" : "", BIT(data, 4) ? "" : " INH",
|
||||
BIT(data, 3) ? " CMD" : "", BIT(data, 2) ? " SYS" : "",
|
||||
BIT(data, 1) ? " IBF" : "", BIT(data, 0) ? " OBF" : "",
|
||||
machine().describe_context());
|
||||
@ -428,7 +428,7 @@ uint8_t ps2_keyboard_controller_device::status_r()
|
||||
u8 const data = m_mcu->upi41_master_r(machine().dummy_space(), 1U);
|
||||
LOGMASKED(LOG_STATUS, "status_r 0x%02x%s%s%s%s%s%s%s%s (%s)\n", data,
|
||||
BIT(data, 7) ? " PER" : "", BIT(data, 6) ? " GTO" : "",
|
||||
BIT(data, 5) ? " AUX_OBF" : "", BIT(data, 4) ? " INH" : "",
|
||||
BIT(data, 5) ? " AUX_OBF" : "", BIT(data, 4) ? "" : " INH",
|
||||
BIT(data, 3) ? " CMD" : "", BIT(data, 2) ? " SYS" : "",
|
||||
BIT(data, 1) ? " IBF" : "", BIT(data, 0) ? " OBF" : "",
|
||||
machine().describe_context());
|
||||
|
Loading…
Reference in New Issue
Block a user