diff options
author | 2017-11-14 17:56:11 +0100 | |
---|---|---|
committer | 2017-11-14 17:56:11 +0100 | |
commit | dc611f674d3939760bfa2c53ff7a014cfd8cdfd1 (patch) | |
tree | b797937ad32a06c6541f96aa06d39e9cc0d81fc3 /src/devices/cpu/i8085/i8085.h | |
parent | b9ded7f69169f06931992c6fb91c46dd38d94aac (diff) |
i8085: lowercase m_im,m_halt,m_status (i'll leave PAIR m_PC,m_SP,m_AF,m_BC,m_DE,m_HL,m_WZ alone) (nw)
Diffstat (limited to 'src/devices/cpu/i8085/i8085.h')
-rw-r--r-- | src/devices/cpu/i8085/i8085.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/i8085/i8085.h b/src/devices/cpu/i8085/i8085.h index 46716ef8883..2c907a28c58 100644 --- a/src/devices/cpu/i8085/i8085.h +++ b/src/devices/cpu/i8085/i8085.h @@ -116,9 +116,9 @@ private: int m_cputype; /* 0 8080, 1 8085A */ PAIR m_PC,m_SP,m_AF,m_BC,m_DE,m_HL,m_WZ; - uint8_t m_HALT; - uint8_t m_IM; /* interrupt mask (8085A only) */ - uint8_t m_STATUS; /* status word */ + uint8_t m_halt; + uint8_t m_im; /* interrupt mask (8085A only) */ + uint8_t m_status; /* status word */ uint8_t m_after_ei; /* post-EI processing; starts at 2, check for ints at 0 */ uint8_t m_nmi_state; /* raw NMI line state */ |