From 856020f96ad00a388ed6674346799e9f11af6937 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 30 Jul 2011 06:01:37 +0000 Subject: [PATCH] Fix assert in H8 core (no whatsnew) --- src/emu/cpu/h83002/h8priv.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/emu/cpu/h83002/h8priv.h b/src/emu/cpu/h83002/h8priv.h index 1cef76b3597..1ddad3d9695 100644 --- a/src/emu/cpu/h83002/h8priv.h +++ b/src/emu/cpu/h83002/h8priv.h @@ -53,7 +53,10 @@ INLINE h83xx_state *get_safe_token(device_t *device) assert(device->type() == H83002 || device->type() == H83007 || device->type() == H83044 || - device->type() == H83334); + device->type() == H83334 || + device->type() == H8S2241 || + device->type() == H8S2246 || + device->type() == H8S2323); return (h83xx_state *)downcast(device)->token(); }