diff options
author | 2012-07-28 07:26:45 +0000 | |
---|---|---|
committer | 2012-07-28 07:26:45 +0000 | |
commit | 283b0bb28dcf7f4b6b2741f4bb24a063c0a8e82b (patch) | |
tree | 5485bb6a4f548d313ccb6a29f11e4275e00cb31a /src/emu/cpu/m6800/m6800.c | |
parent | d821d49753e2b0ff653ffe3aba48ea848aaf98e9 (diff) |
fixed assertion with new m6800 CPU types (no whatsnew)
Diffstat (limited to 'src/emu/cpu/m6800/m6800.c')
-rw-r--r-- | src/emu/cpu/m6800/m6800.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emu/cpu/m6800/m6800.c b/src/emu/cpu/m6800/m6800.c index 8620ce98774..38ebe05bbaa 100644 --- a/src/emu/cpu/m6800/m6800.c +++ b/src/emu/cpu/m6800/m6800.c @@ -179,7 +179,9 @@ INLINE m6800_state *get_safe_token(device_t *device) device->type() == M6808 || device->type() == HD6301 || device->type() == HD63701 || - device->type() == NSC8105); + device->type() == NSC8105 || + device->type() == HD6303R || + device->type() == HD6303Y); return (m6800_state *)downcast<legacy_cpu_device *>(device)->token(); } |