From bcedb50e48e25d99b302d959796d46221b38fab7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Kujawa?= Date: Fri, 20 Jan 2017 09:11:22 +0100 Subject: [PATCH] Clean up. --- src/rk65c02.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/rk65c02.c b/src/rk65c02.c index db07f4d..313ea7a 100644 --- a/src/rk65c02.c +++ b/src/rk65c02.c @@ -32,16 +32,11 @@ rk65c02_start(rk65c02emu_t *e) { i = instruction_fetch(e->bus, e->regs.PC); id = instruction_decode(i.opcode); -// instruction_execute(e, i); if (id.emul != NULL) id.emul(e, &i); else printf("unimplemented opcode %X\n", i.opcode); - -/* if (i.opcode == 0xDB) // STP - e->state = STOPPED;*/ - e->regs.PC += id.size; }