1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-12-04 19:50:19 +00:00

Remove leftover debug code.

This commit is contained in:
Radosław Kujawa 2018-03-23 11:23:16 +01:00
parent 5cb6f3488e
commit 0c77eeb505

View File

@ -238,9 +238,6 @@ emul_bbs7(rk65c02emu_t *e, void *id, instruction_t *i)
void
emul_bit(rk65c02emu_t *e, void *id, instruction_t *i)
{
/* uint8_t v = instruction_data_read_1(e, (instrdef_t *) id, i);
printf("%x\n", v);*/
/* zero flag set if acculumator AND memory equals zero */
if (e->regs.A & instruction_data_read_1(e, (instrdef_t *) id, i))
e->regs.P &= ~P_ZERO;