summaryrefslogtreecommitdiff
path: root/emu/emul.c
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2020-12-21 20:36:10 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2020-12-21 20:36:10 +0100
commitcc9c81e4fef6938ec0b8a29c040b174b6c29daa8 (patch)
tree10c99eb1dee7e4e6504cc149e37fff268794b291 /emu/emul.c
parent27ccbbb488ce6873a72e64b097f88066123efe9c (diff)
download6502-cc9c81e4fef6938ec0b8a29c040b174b6c29daa8.tar.gz
6502-cc9c81e4fef6938ec0b8a29c040b174b6c29daa8.tar.bz2
more tests
Diffstat (limited to 'emu/emul.c')
-rw-r--r--emu/emul.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/emu/emul.c b/emu/emul.c
index ff3ac38..53d5ed2 100644
--- a/emu/emul.c
+++ b/emu/emul.c
@@ -120,6 +120,8 @@ void emul_run( emul_t *emul, int nof_steps )
case SDLK_s:
cpu_6502_run( emul->cpu, 1 );
break;
+ case SDLK_EQUALS:
+ case SDLK_KP_EQUALS:
case SDLK_PLUS:
case SDLK_KP_PLUS:
emul->speed *= 10;