1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-12-13 01:29:57 +00:00

Remove debug printfs.

This commit is contained in:
Radosław Kujawa 2017-01-19 00:20:53 +01:00
parent 73e4be2acc
commit e7380477a9

View File

@ -6,15 +6,10 @@ void
emul_lda(rk65c02emu_t *e, instruction_t *i)
{
instrdef_t id;
id = instruction_decode(i->opcode);
printf("A: %x", e->regs.A);
e->regs.A = i->op1;
printf("A: %x", e->regs.A);
}
void