diff options
Diffstat (limited to 'src/mame/drivers/vcs80.cpp')
-rw-r--r-- | src/mame/drivers/vcs80.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/vcs80.cpp b/src/mame/drivers/vcs80.cpp index 9ab71cf8c49..bbca57adb3f 100644 --- a/src/mame/drivers/vcs80.cpp +++ b/src/mame/drivers/vcs80.cpp @@ -140,7 +140,7 @@ READ8_MEMBER( vcs80_state::pio_pa_r ) */ - UINT8 data = 0; + uint8_t data = 0; /* keyboard and led latch */ data |= m_keylatch; @@ -173,7 +173,7 @@ WRITE8_MEMBER( vcs80_state::pio_pb_w ) */ - UINT8 led_data = BITSWAP8(data & 0x7f, 7, 5, 6, 4, 3, 2, 1, 0); + uint8_t led_data = BITSWAP8(data & 0x7f, 7, 5, 6, 4, 3, 2, 1, 0); int digit = m_keylatch; /* skip middle digit */ |