summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/m6502/m6502.c
diff options
context:
space:
mode:
author Curt Coder <curtcoder@mail.com>2011-02-11 09:28:11 +0000
committer Curt Coder <curtcoder@mail.com>2011-02-11 09:28:11 +0000
commit391c093c966fea35dd56cb7a6baa463ec9e0181e (patch)
tree2b4d0ff219152c9fb939bbcc5d701c0c15e07ebb /src/emu/cpu/m6502/m6502.c
parent58523250e5dc6db964fbbd018312e4bfef4bf1e3 (diff)
Added missing device type. (no whatsnew)
Diffstat (limited to 'src/emu/cpu/m6502/m6502.c')
-rw-r--r--src/emu/cpu/m6502/m6502.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/cpu/m6502/m6502.c b/src/emu/cpu/m6502/m6502.c
index 4992013825c..d6b291d4459 100644
--- a/src/emu/cpu/m6502/m6502.c
+++ b/src/emu/cpu/m6502/m6502.c
@@ -89,6 +89,7 @@ INLINE m6502_Regs *get_safe_token(device_t *device)
{
assert(device != NULL);
assert(device->type() == M6502 ||
+ device->type() == M6504 ||
device->type() == M6510 ||
device->type() == M6510T ||
device->type() == M7501 ||