From 81b07361fb1715ef8d9f6833619a7cd16069a393 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Wed, 10 Jan 2018 21:49:52 -0600 Subject: [PATCH] Wait less time for instructions --- src/mos6502.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mos6502.c b/src/mos6502.c index d5c84e6..13a254b 100644 --- a/src/mos6502.c +++ b/src/mos6502.c @@ -391,7 +391,7 @@ mos6502_execute(mos6502 *cpu) // FIXME: uh this probably isn't right, but I wanted to do // something. - usleep(cycles * 100000); + usleep(cycles * 10000); // Ok -- we're done! This wasn't so hard, was it? return;