diff options
author | 2015-12-26 10:27:03 +0100 | |
---|---|---|
committer | 2015-12-26 10:27:03 +0100 | |
commit | a546ea128238feaa616451ed7b7f4fe389dd1460 (patch) | |
tree | 7ef7ce818fbf2ca1b6460d7c30554072c4056793 /src/devices/cpu/scmp | |
parent | 2d00b8653dcaf9222721bc9fd995c1c1cc739c83 (diff) |
cleanup (nw)
Diffstat (limited to 'src/devices/cpu/scmp')
-rw-r--r-- | src/devices/cpu/scmp/scmp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/scmp/scmp.cpp b/src/devices/cpu/scmp/scmp.cpp index ed05dafa962..4ceb90c9f8f 100644 --- a/src/devices/cpu/scmp/scmp.cpp +++ b/src/devices/cpu/scmp/scmp.cpp @@ -130,8 +130,8 @@ void scmp_device::DEC_ADD(UINT8 val) UINT16 scmp_device::GET_ADDR(UINT8 code) { - UINT16 addr = 0; - INT8 offset = 0; + UINT16 addr; + INT8 offset; UINT16 retVal = 0; UINT16 ptr = GET_PTR_REG(code & 0x03)->w.l; |