diff options
author | 2017-05-09 18:01:52 -0400 | |
---|---|---|
committer | 2017-05-09 18:01:52 -0400 | |
commit | 3f3b6bc4cc9c2237d9db39cb174e9b73e5fc0e32 (patch) | |
tree | da0525a45bc327a5d0844a01ac44b85dec92fe75 /src | |
parent | ba3b5899be11d5a5f0aff3c6eaee9f1725f263e5 (diff) |
rip out unnecessary stuff (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/devices/cpu/sm510/sm590core.cpp | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/devices/cpu/sm510/sm590core.cpp b/src/devices/cpu/sm510/sm590core.cpp index 03e985a256c..4a588a5dbb0 100644 --- a/src/devices/cpu/sm510/sm590core.cpp +++ b/src/devices/cpu/sm510/sm590core.cpp @@ -153,7 +153,7 @@ void sm590_device::execute_one() case 0x51: op_debm(); break; case 0x52: op_incb(); break; // aka inbl case 0x53: op_decb(); break; // aka debl - case 0x54: op_tc(); break; // check this? + case 0x54: op_tc(); break; case 0x55: op_rta(); break; case 0x56: op_blta(); break; case 0x57: op_exbla(); break; // aka xbla @@ -167,18 +167,6 @@ void sm590_device::execute_one() case 0x72: op_adc(); break; case 0x73: op_add11(); break; // aka adcs - /*// extended opcodes - case 0x5e: - m_op = m_op << 8 | m_param; - switch (m_param) - { - case 0x00: op_cend(); break; - case 0x04: op_dta(); break; - - default: op_illegal(); break; - } - break; // 0x5e*/ - default: op_illegal(); break; } break; // 0xff |