summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/mb86233
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-07-31 16:47:26 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-07-31 16:47:26 +0200
commitf127621e13050aad6b455ebfadec5bfdcbdd00d4 (patch)
tree0601ca3093ab58610f108f93167d344151b2d4e5 /src/devices/cpu/mb86233
parenteaa70ae0313eb1135ba63814f07f7e22c766a504 (diff)
made constexprs lower case and used constexpr for returning input value as well for rest of defines in osdcomm.h (nw)
Diffstat (limited to 'src/devices/cpu/mb86233')
-rw-r--r--src/devices/cpu/mb86233/mb86233d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/mb86233/mb86233d.cpp b/src/devices/cpu/mb86233/mb86233d.cpp
index 6e27c3b4d06..f75053c07ff 100644
--- a/src/devices/cpu/mb86233/mb86233d.cpp
+++ b/src/devices/cpu/mb86233/mb86233d.cpp
@@ -779,6 +779,6 @@ static unsigned dasm_mb86233(char *buffer, UINT32 opcode )
CPU_DISASSEMBLE( mb86233 )
{
UINT32 op = *(UINT32 *)oprom;
- op = LITTLE_ENDIANIZE_INT32(op);
+ op = little_endianize_int32(op);
return dasm_mb86233(buffer, op);
}