ioports and output finders need initializing with an unsigned value, not an implcitly signed value. Fixes build on GCC.

This commit is contained in:
mooglyguy 2018-10-11 16:40:21 +02:00
parent cc97ea4213
commit 6c6732e8cf

View File

@ -223,8 +223,8 @@ ibm_pc_at_101_keyboard_device::ibm_pc_at_101_keyboard_device(const machine_confi
: device_t(mconfig, PC_KBD_IBM_PC_AT_101, tag, owner, clock) : device_t(mconfig, PC_KBD_IBM_PC_AT_101, tag, owner, clock)
, device_pc_kbd_interface(mconfig, *this) , device_pc_kbd_interface(mconfig, *this)
, m_maincpu(*this, "mcu") , m_maincpu(*this, "mcu")
, m_column(*this, "column%02u", 0) , m_column(*this, "column%02u", 0U)
, m_leds(*this, "led%u", 0) , m_leds(*this, "led%u", 0U)
{ {
} }