Skip to content

Commit

Permalink
fix video opcode disassembly and review its implementation.
Browse files Browse the repository at this point in the history
fix issues #6 and #7
  • Loading branch information
felipesanches committed Jun 1, 2017
1 parent 2f06750 commit f1a0960
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/devices/cpu/anotherworld/anotherworld_dasm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,8 @@ CPU_DISASSEMBLE( another_world )
sprintf(y_str, "[0x%02x]", y);
}
} else {
/*TODO: This seems to be broken. Maybe looking at the emulation of
* this instruction can give us some insight.
*/
sprintf(y_str, "? (FIXME!)");
y = oprom[i++];
sprintf(y_str, "%d", y);
}

uint8_t zoom;
Expand Down

0 comments on commit f1a0960

Please sign in to comment.