mirror of
https://github.com/holub/mame
synced 2025-04-20 23:42:22 +03:00
Oops. That was wrong. BU is always 0000 in LBL (nw)
This commit is contained in:
parent
015c4485ae
commit
9ea213d532
@ -418,9 +418,8 @@ CPU_DISASSEMBLE( pps4 )
|
||||
|
||||
if (tok & t_I8c) {
|
||||
// 8 bit immediate offset into page
|
||||
UINT16 arg = pc & ~0xff;
|
||||
arg |= ~ARG(pc++) & 255;
|
||||
dst += sprintf(dst, "%03x", arg);
|
||||
UINT16 arg = ~ARG(pc++) & 255;
|
||||
dst += sprintf(dst, "%02x", arg);
|
||||
}
|
||||
|
||||
if (tok & t_OVER) // TL or TML
|
||||
|
Loading…
Reference in New Issue
Block a user