summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/dsp32/dsp32dis.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/dsp32/dsp32dis.cpp')
-rw-r--r--src/devices/cpu/dsp32/dsp32dis.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/dsp32/dsp32dis.cpp b/src/devices/cpu/dsp32/dsp32dis.cpp
index 25f43e30761..18c06f01e9d 100644
--- a/src/devices/cpu/dsp32/dsp32dis.cpp
+++ b/src/devices/cpu/dsp32/dsp32dis.cpp
@@ -85,7 +85,7 @@ static const char *const regnamee[] =
static char tempbuf[10][40];
-INLINE char *signed_16bit_unary(INT16 val)
+static inline char *signed_16bit_unary(INT16 val)
{
static char temp[10];
if (val < 0)
@@ -95,7 +95,7 @@ INLINE char *signed_16bit_unary(INT16 val)
return temp;
}
-INLINE char *signed_16bit_sep(INT16 val)
+static inline char *signed_16bit_sep(INT16 val)
{
static char temp[10];
if (val < 0)
@@ -105,7 +105,7 @@ INLINE char *signed_16bit_sep(INT16 val)
return temp;
}
-INLINE char *signed_16bit_sep_nospace(INT16 val)
+static inline char *signed_16bit_sep_nospace(INT16 val)
{
static char temp[10];
if (val < 0)
@@ -115,7 +115,7 @@ INLINE char *signed_16bit_sep_nospace(INT16 val)
return temp;
}
-INLINE char *unsigned_16bit_size(INT16 val, UINT8 size)
+static inline char *unsigned_16bit_size(INT16 val, UINT8 size)
{
static char temp[10];
if (size)