diff options
author | 2014-02-20 18:18:29 +0000 | |
---|---|---|
committer | 2014-02-20 18:18:29 +0000 | |
commit | 3138b2c6600a92a422800f81a6ecbb3700da4af8 (patch) | |
tree | 0fd8bd0a89d9397bd897bdbfb5052ca41fb13e0a /src/emu/cpu/tms32031 | |
parent | d8ba983889bd61a07bbc15c4cee3719819271ac0 (diff) |
second round of clang 3.4 fixes for MESS (nw)
Diffstat (limited to 'src/emu/cpu/tms32031')
-rw-r--r-- | src/emu/cpu/tms32031/dis32031.c | 2 | ||||
-rw-r--r-- | src/emu/cpu/tms32031/tms32031.c | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/emu/cpu/tms32031/dis32031.c b/src/emu/cpu/tms32031/dis32031.c index 3cd7afe437d..56e3533e474 100644 --- a/src/emu/cpu/tms32031/dis32031.c +++ b/src/emu/cpu/tms32031/dis32031.c @@ -30,6 +30,7 @@ CODE CODE ***************************************************************************/ +#if 0 INLINE char *signed_16bit(INT16 val) { static char temp[10]; @@ -39,6 +40,7 @@ INLINE char *signed_16bit(INT16 val) sprintf(temp, "$%x", val); return temp; } +#endif static const char *const regname[32] = { diff --git a/src/emu/cpu/tms32031/tms32031.c b/src/emu/cpu/tms32031/tms32031.c index 3e85f2ffe10..3ad69d45df9 100644 --- a/src/emu/cpu/tms32031/tms32031.c +++ b/src/emu/cpu/tms32031/tms32031.c @@ -67,9 +67,9 @@ const int LVFLAG = 0x0020; const int LUFFLAG = 0x0040; const int OVMFLAG = 0x0080; const int RMFLAG = 0x0100; -const int CFFLAG = 0x0400; -const int CEFLAG = 0x0800; -const int CCFLAG = 0x1000; +//const int CFFLAG = 0x0400; +//const int CEFLAG = 0x0800; +//const int CCFLAG = 0x1000; const int GIEFLAG = 0x2000; |