summaryrefslogtreecommitdiffstats
path: root/src/devices/cpu/uml.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-07-31 11:50:20 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-07-31 14:41:02 +0200
commit9667c6a8cce1829a7321dde67bd0287c73234386 (patch)
treef3665957d557cb18728a40e75f7d9f2341aaff1d /src/devices/cpu/uml.cpp
parent69ac4affc86caac51ff9720083ed128dabdb932f (diff)
std::min and std:max instead of MIN and MAX, also some more macros converted to inline functions (nw)
Diffstat (limited to 'src/devices/cpu/uml.cpp')
-rw-r--r--src/devices/cpu/uml.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/uml.cpp b/src/devices/cpu/uml.cpp
index 5810391dcb9..2ca54703497 100644
--- a/src/devices/cpu/uml.cpp
+++ b/src/devices/cpu/uml.cpp
@@ -661,9 +661,9 @@ void uml::instruction::simplify()
if (m_param[1].is_immediate())
{
if (m_size == 4)
- convert_to_mov_immediate(FLIPENDIAN_INT32(m_param[1].immediate()));
+ convert_to_mov_immediate(flipendian_int32(m_param[1].immediate()));
else if (m_size == 8)
- convert_to_mov_immediate(FLIPENDIAN_INT64(m_param[1].immediate()));
+ convert_to_mov_immediate(flipendian_int64(m_param[1].immediate()));
}
break;