mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
h8: fix absolute address bst/bist opcode IMM data
This commit is contained in:
parent
f154215cee
commit
e4b7c6cc45
1 changed files with 2 additions and 2 deletions
|
@ -2874,7 +2874,7 @@ macro jsr32 %opc %spreg
|
|||
m_TMP2 = 0xffffff00 | m_IR[0];
|
||||
m_TMP1 = read8(m_TMP2);
|
||||
prefetch_start
|
||||
bst m_IR[0] >> 4
|
||||
bst m_IR[1] >> 4
|
||||
write8(m_TMP2, m_TMP1);
|
||||
prefetch_done();
|
||||
|
||||
|
@ -2882,7 +2882,7 @@ macro jsr32 %opc %spreg
|
|||
m_TMP2 = 0xffffff00 | m_IR[0];
|
||||
m_TMP1 = read8(m_TMP2);
|
||||
prefetch_start
|
||||
bist m_IR[0] >> 4
|
||||
bist m_IR[1] >> 4
|
||||
write8(m_TMP2, m_TMP1);
|
||||
prefetch_done();
|
||||
|
||||
|
|
Loading…
Reference in a new issue