diff options
Diffstat (limited to 'src/devices/cpu/i386/i386.cpp')
-rw-r--r-- | src/devices/cpu/i386/i386.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/i386/i386.cpp b/src/devices/cpu/i386/i386.cpp index 5ce7fdb4f4e..f0d57ada9a0 100644 --- a/src/devices/cpu/i386/i386.cpp +++ b/src/devices/cpu/i386/i386.cpp @@ -275,7 +275,7 @@ UINT32 i386_device::i386_get_stack_ptr(UINT8 privilege) return ret; } -UINT32 i386_device::get_flags() +UINT32 i386_device::get_flags() const { UINT32 f = 0x2; f |= m_CF; @@ -3465,7 +3465,7 @@ void i386_device::state_export(const device_state_entry &entry) } } -void i386_device::state_string_export(const device_state_entry &entry, std::string &str) +void i386_device::state_string_export(const device_state_entry &entry, std::string &str) const { switch (entry.index()) { |