mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00
H8: add bild and bist opcodes [R. Belmont]
This commit is contained in:
parent
19256de183
commit
461d257aea
@ -2053,8 +2053,7 @@ static void h8_group7(h83xx_state *h8, UINT16 opcode)
|
|||||||
bitnr = (ext16>>4)&7;
|
bitnr = (ext16>>4)&7;
|
||||||
if(ext16&0x80)
|
if(ext16&0x80)
|
||||||
{
|
{
|
||||||
// bist
|
h8_bist8(h8, bitnr, udata8); H8_IFETCH_TIMING(2); H8_BYTE_TIMING(2, address24);
|
||||||
h8->h8err = 1;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -2065,8 +2064,7 @@ static void h8_group7(h83xx_state *h8, UINT16 opcode)
|
|||||||
bitnr = (ext16>>4)&7;
|
bitnr = (ext16>>4)&7;
|
||||||
if(ext16&0x80)
|
if(ext16&0x80)
|
||||||
{
|
{
|
||||||
// bild
|
h8_bild8(h8, bitnr, udata8); H8_IFETCH_TIMING(2); H8_BYTE_TIMING(2, address24);
|
||||||
h8->h8err = 1;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user