From 461d257aea5aba70004bf6c708015823472dc168 Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Mon, 22 Feb 2010 03:36:46 +0000 Subject: [PATCH] H8: add bild and bist opcodes [R. Belmont] --- src/emu/cpu/h83002/h8ops.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/emu/cpu/h83002/h8ops.h b/src/emu/cpu/h83002/h8ops.h index 14dbda70735..8ed63822e38 100644 --- a/src/emu/cpu/h83002/h8ops.h +++ b/src/emu/cpu/h83002/h8ops.h @@ -2053,8 +2053,7 @@ static void h8_group7(h83xx_state *h8, UINT16 opcode) bitnr = (ext16>>4)&7; if(ext16&0x80) { - // bist - h8->h8err = 1; + h8_bist8(h8, bitnr, udata8); H8_IFETCH_TIMING(2); H8_BYTE_TIMING(2, address24); } else { @@ -2065,8 +2064,7 @@ static void h8_group7(h83xx_state *h8, UINT16 opcode) bitnr = (ext16>>4)&7; if(ext16&0x80) { - // bild - h8->h8err = 1; + h8_bild8(h8, bitnr, udata8); H8_IFETCH_TIMING(2); H8_BYTE_TIMING(2, address24); } else {