diff options
author | Michael Pavone <pavone@retrodev.com> | 2016-04-24 02:19:48 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2016-04-24 02:19:48 -0700 |
commit | 508a9aedf03d887dcc00a8c53caf8cef1ada2937 (patch) | |
tree | 8d0eae4e522d3ac51a09bd477624ec4155836368 /68kinst.c | |
parent | 6c2b3708efcbd900c29422510cfdc62787d3c32d (diff) |
Half assed, prefetch based open bus value emulation. Gets BlastEm up to 119/122 in VDP FIFO Testing
Diffstat (limited to '68kinst.c')
-rw-r--r-- | 68kinst.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1546,8 +1546,10 @@ uint16_t * m68k_decode(uint16_t * istream, m68kinst * decoded, uint32_t address) } if (decoded->op == M68K_INVALID) { decoded->src.params.immed = *start; + decoded->bytes = 2; return start + 1; } + decoded->bytes = 2 * (istream + 1 - start); return istream+1; } |