From 47d748329733ae1e31abcdc7a5ce8cacb24fae24 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Mon, 22 Jan 2018 21:42:42 -0600 Subject: [PATCH] Disable usleep delay for now --- src/mos6502.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mos6502.c b/src/mos6502.c index db82d56..7c21c5e 100644 --- a/src/mos6502.c +++ b/src/mos6502.c @@ -400,7 +400,7 @@ mos6502_execute(mos6502 *cpu) // FIXME: uh this probably isn't right, but I wanted to do // something. - usleep(cycles * 10000); + //usleep(cycles); // We need to record the opcode and the effective address for // anything which might need to reference it.