diff options
author | 2012-08-04 12:19:06 +0000 | |
---|---|---|
committer | 2012-08-04 12:19:06 +0000 | |
commit | b938c3e690b25123a52f15c754170e32ddf60b93 (patch) | |
tree | 06e971be486774472bc27e1d236e4d93d3f1065f /src/emu/cpu/tms32025 | |
parent | 9fe7b3bbcccda6146f43ca78ada93f827d30fb72 (diff) |
fixed some unread variable warning reported by cppcheck (no whatsnew)
Diffstat (limited to 'src/emu/cpu/tms32025')
-rw-r--r-- | src/emu/cpu/tms32025/32025dsm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/tms32025/32025dsm.c b/src/emu/cpu/tms32025/32025dsm.c index 9388bf0a9d9..c49d2611954 100644 --- a/src/emu/cpu/tms32025/32025dsm.c +++ b/src/emu/cpu/tms32025/32025dsm.c @@ -388,7 +388,7 @@ static void InitDasm32025(void) CPU_DISASSEMBLE( tms32025 ) { UINT32 flags = 0; - int a, b, c, d, k, m, n, p, r, s, t, w, x; /* these can all be filled in by parsing an instruction */ + int a, b, c, d, k, m, n, p, r, s, t, w; /* these can all be filled in by parsing an instruction */ int i; int op; int cnt = 1; @@ -433,7 +433,7 @@ CPU_DISASSEMBLE( tms32025 ) /* shift out operands */ cp = Op[op].parse; - a = b = c = d = k = m = n = p = r = s = t = w = x = 0; + a = b = c = d = k = m = n = p = r = s = t = w = 0; while (bit >= 0) { |