diff options
author | 2015-12-25 20:53:59 +0100 | |
---|---|---|
committer | 2015-12-25 20:53:59 +0100 | |
commit | c6d27c753f68cb22d8f88d031ae0645ab80c72b6 (patch) | |
tree | 814fb384b0024aa03da79a806d7674624abace47 /src/devices/cpu/minx | |
parent | a8ef53fa51dcc81dbb9a647dfc1777ef72ee2f93 (diff) |
cleanups (nw)
Diffstat (limited to 'src/devices/cpu/minx')
-rw-r--r-- | src/devices/cpu/minx/minxd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/minx/minxd.cpp b/src/devices/cpu/minx/minxd.cpp index 58789942409..31f4a1f51d7 100644 --- a/src/devices/cpu/minx/minxd.cpp +++ b/src/devices/cpu/minx/minxd.cpp @@ -424,8 +424,8 @@ CPU_DISASSEMBLE( minx ) { const minxdasm *instr; UINT8 op, op1; - INT8 ofs8 = 0; - UINT16 ea = 0; + INT8 ofs8; + UINT16 ea; int pos = 0; char *dst = buffer; |