diff options
author | 2015-12-26 13:54:32 +0100 | |
---|---|---|
committer | 2015-12-26 13:54:32 +0100 | |
commit | 9f998d0afb69f4286f05e46efe27806b6aba32af (patch) | |
tree | 7a126081d7eb971c4cc9f8fa8952ad04a30ab231 /src/devices/cpu/tms32025/tms32025.cpp | |
parent | a546ea128238feaa616451ed7b7f4fe389dd1460 (diff) |
cleanup (nw)
Diffstat (limited to 'src/devices/cpu/tms32025/tms32025.cpp')
-rw-r--r-- | src/devices/cpu/tms32025/tms32025.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms32025/tms32025.cpp b/src/devices/cpu/tms32025/tms32025.cpp index e9226c86165..562b86b2a6a 100644 --- a/src/devices/cpu/tms32025/tms32025.cpp +++ b/src/devices/cpu/tms32025/tms32025.cpp @@ -2187,7 +2187,7 @@ bool tms32025_device::memory_readop(offs_t offset, int size, UINT64 &value) ****************************************************************************/ bool tms32025_device::memory_read(address_spacenum spacenum, offs_t offset, int size, UINT64 &value) { - void *ptr = nullptr; + void *ptr; UINT64 temp = 0; switch (spacenum) @@ -2239,7 +2239,7 @@ bool tms32025_device::memory_read(address_spacenum spacenum, offs_t offset, int ****************************************************************************/ bool tms32025_device::memory_write(address_spacenum spacenum, offs_t offset, int size, UINT64 value) { - void *ptr = nullptr; + void *ptr; switch (spacenum) { |