summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/mcs48/mcs48.c
diff options
context:
space:
mode:
author Curt Coder <curtcoder@mail.com>2010-11-22 15:13:16 +0000
committer Curt Coder <curtcoder@mail.com>2010-11-22 15:13:16 +0000
commit5bd39b69a19d6d804f9b3972f27c7f94b87bfc3a (patch)
treea4e3343847814fd40e09aa28748ac9a0a4c6905a /src/emu/cpu/mcs48/mcs48.c
parent7e88fc6ba98f0ee141e2ca9150c3fb05b4588079 (diff)
Added missing CPU types to assert. (no whatsnew)
Diffstat (limited to 'src/emu/cpu/mcs48/mcs48.c')
-rw-r--r--src/emu/cpu/mcs48/mcs48.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emu/cpu/mcs48/mcs48.c b/src/emu/cpu/mcs48/mcs48.c
index 53ee0542281..c272c887714 100644
--- a/src/emu/cpu/mcs48/mcs48.c
+++ b/src/emu/cpu/mcs48/mcs48.c
@@ -221,7 +221,9 @@ static int check_irqs(mcs48_state *cpustate);
INLINE mcs48_state *get_safe_token(running_device *device)
{
assert(device != NULL);
- assert(device->type() == I8035 ||
+ assert(device->type() == I8021 ||
+ device->type() == I8022 ||
+ device->type() == I8035 ||
device->type() == I8048 ||
device->type() == I8648 ||
device->type() == I8748 ||