| Previous | 199869 Revisions | Next |
| r33725 Sunday 7th December, 2014 at 05:12:51 UTC by Jürgen Buchmüller |
|---|
| Oops. That was wrong. BU is always 0000 in LBL (nw) |
| [src/emu/cpu/pps4] | pps4dasm.c |
| r242236 | r242237 | |
|---|---|---|
| 418 | 418 | |
| 419 | 419 | if (tok & t_I8c) { |
| 420 | 420 | // 8 bit immediate offset into page |
| 421 | UINT16 arg = pc & ~0xff; | |
| 422 | arg |= ~ARG(pc++) & 255; | |
| 423 | dst += sprintf(dst, "%03x", arg); | |
| 421 | UINT16 arg = ~ARG(pc++) & 255; | |
| 422 | dst += sprintf(dst, "%02x", arg); | |
| 424 | 423 | } |
| 425 | 424 | |
| 426 | 425 | if (tok & t_OVER) // TL or TML |
| https://github.com/mamedev/mame/commit/9ea213d532e62ef09a22dcabb0416cb6c7ce2496 |
| Previous | 199869 Revisions | Next |