From 5bd39b69a19d6d804f9b3972f27c7f94b87bfc3a Mon Sep 17 00:00:00 2001 From: Curt Coder Date: Mon, 22 Nov 2010 15:13:16 +0000 Subject: [PATCH] Added missing CPU types to assert. (no whatsnew) --- src/emu/cpu/mcs48/mcs48.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 ||