summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/v60/op2.hxx
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2021-12-01 17:46:55 -0500
committer AJR <ajrhacker@users.noreply.github.com>2021-12-01 17:46:55 -0500
commitbbb9aba9a382aca07a943d34d744fbaabb1d17cb (patch)
tree8480987a8a39f2c9621a428122ef621fe85993bc /src/devices/cpu/v60/op2.hxx
parent1c8ba9d5c86e42520f026ff029e2b1df5e7acd82 (diff)
v60: Code cleanup
- Remove #ifdefs and use attributes instead - Remove "never reached" return statements
Diffstat (limited to 'src/devices/cpu/v60/op2.hxx')
-rw-r--r--src/devices/cpu/v60/op2.hxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/devices/cpu/v60/op2.hxx b/src/devices/cpu/v60/op2.hxx
index 8d7be235dce..c4abd0af06b 100644
--- a/src/devices/cpu/v60/op2.hxx
+++ b/src/devices/cpu/v60/op2.hxx
@@ -257,13 +257,11 @@ uint32_t v60_device::opCMPF()
uint32_t v60_device::op5FUNHANDLED()
{
fatalerror("Unhandled 5F opcode at %08x\n", PC);
- return 0; /* never reached, fatalerror won't return */
}
uint32_t v60_device::op5CUNHANDLED()
{
fatalerror("Unhandled 5C opcode at %08x\n", PC);
- return 0; /* never reached, fatalerror won't return */
}
const v60_device::am_func v60_device::s_Op5FTable[32] =