summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/z180/z180ed.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/z180/z180ed.hxx')
-rw-r--r--src/devices/cpu/z180/z180ed.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/z180/z180ed.hxx b/src/devices/cpu/z180/z180ed.hxx
index 91520228f87..df123a07a23 100644
--- a/src/devices/cpu/z180/z180ed.hxx
+++ b/src/devices/cpu/z180/z180ed.hxx
@@ -135,7 +135,7 @@ OP(ed,6d) { RETI; } /* RETI
OP(ed,6e) { m_IM = 0; } /* IM 0 */
OP(ed,6f) { RLD; } /* RLD (HL) */
-OP(ed,70) { UINT8 res = IN(_BC); _F = (_F & CF) | SZP[res]; } /* IN 0,(C) */
+OP(ed,70) { uint8_t res = IN(_BC); _F = (_F & CF) | SZP[res]; } /* IN 0,(C) */
OP(ed,71) { OUT(_BC,0); } /* OUT (C),0 */
OP(ed,72) { SBC16( SP ); } /* SBC HL,SP */
OP(ed,73) { m_ea = ARG16(); WM16( m_ea, &m_SP ); } /* LD (w),SP */