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/arcompact | |
| parent | a546ea128238feaa616451ed7b7f4fe389dd1460 (diff) | |
cleanup (nw)
Diffstat (limited to 'src/devices/cpu/arcompact')
| -rw-r--r-- | src/devices/cpu/arcompact/arcompact_execute.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/devices/cpu/arcompact/arcompact_execute.cpp b/src/devices/cpu/arcompact/arcompact_execute.cpp index ba3c3ea3af4..8da820fa25d 100644 --- a/src/devices/cpu/arcompact/arcompact_execute.cpp +++ b/src/devices/cpu/arcompact/arcompact_execute.cpp @@ -1293,7 +1293,7 @@ ARCOMPACT_RETTYPE arcompact_device::arcompact_handle01_00_01dasm(OPS_32) ARCOMPACT_RETTYPE arcompact_device::arcompact_01_01_00_helper(OPS_32, const char* optext) { - int size = 4; + int size; // Branch on Compare / Bit Test - Register-Register @@ -1564,7 +1564,7 @@ ARCOMPACT_RETTYPE arcompact_device::arcompact_handle01_01_01_0f(OPS_32) { retur ARCOMPACT_RETTYPE arcompact_device::arcompact_handle02(OPS_32) { int size = 4; - UINT32 limm = 0; + UINT32 limm; int S = (op & 0x00008000) >> 15;// op &= ~0x00008000; int s = (op & 0x00ff0000) >> 16;// op &= ~0x00ff0000; @@ -1761,7 +1761,7 @@ ARCOMPACT_RETTYPE arcompact_device::arcompact_handle03(OPS_32) ARCOMPACT_RETTYPE arcompact_device::arcompact_handle04_helper(OPS_32, const char* optext, int ignore_dst, int b_reserved) { - int size = 4; + int size; //UINT32 limm = 0; int got_limm = 0; @@ -1925,7 +1925,7 @@ ARCOMPACT_RETTYPE arcompact_device::arcompact_handle04_1d(OPS_32) ARCOMPACT_RETTYPE arcompact_device::arcompact_handle04_20_p00(OPS_32) { - int size = 4; + int size; UINT32 limm = 0; int got_limm = 0; @@ -2011,7 +2011,7 @@ ARCOMPACT_RETTYPE arcompact_device::arcompact_handle04_20_p11_m0(OPS_32) // Jcc COMMON32_GET_CONDITION; COMMON32_GET_F - UINT32 c = 0; + UINT32 c; if (creg == LIMM_REG) { @@ -2127,7 +2127,7 @@ ARCOMPACT_RETTYPE arcompact_device::arcompact_handle04_21_p10(OPS_32) ARCOMPACT_RETTYPE arcompact_device::arcompact_handle04_21_p11_m0(OPS_32) // Jcc.D (no link, delay) { int size = 4; - UINT32 limm = 0; + UINT32 limm; int got_limm = 0; COMMON32_GET_creg @@ -2270,7 +2270,7 @@ ARCOMPACT_RETTYPE arcompact_device::arcompact_handle04_29(OPS_32) ARCOMPACT_RETTYPE arcompact_device::arcompact_handle04_2f_helper(OPS_32, const char* optext) { - int size = 4; + int size; COMMON32_GET_p; //COMMON32_GET_breg; @@ -2330,7 +2330,7 @@ ARCOMPACT_RETTYPE arcompact_device::arcompact_handle04_2f_3f_05(OPS_32) { arcom ARCOMPACT_RETTYPE arcompact_device::arcompact_handle04_3x_helper(OPS_32, int dsize, int extend) { - int size = 4; + int size; //UINT32 limm=0; int got_limm = 0; @@ -2406,7 +2406,7 @@ ARCOMPACT_RETTYPE arcompact_device::arcompact_handle05_29(OPS_32) { return arco ARCOMPACT_RETTYPE arcompact_device::arcompact_handle05_2f_0x_helper(OPS_32, const char* optext) { - int size = 4; + int size; COMMON32_GET_p; //COMMON32_GET_breg; @@ -2548,7 +2548,7 @@ ARCOMPACT_RETTYPE arcompact_device::arcompact_handle0d_03(OPS_16) ARCOMPACT_RETTYPE arcompact_device::arcompact_handle0e_0x_helper(OPS_16, const char* optext, int revop) { int h;// , breg; - int size = 2; + int size; GROUP_0e_GET_h; |
