summaryrefslogtreecommitdiff
path: root/emu/emu.c
diff options
context:
space:
mode:
Diffstat (limited to 'emu/emu.c')
-rw-r--r--emu/emu.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/emu/emu.c b/emu/emu.c
index 539c89b..421d4cc 100644
--- a/emu/emu.c
+++ b/emu/emu.c
@@ -73,6 +73,10 @@ int main( int argc, char *argv[] )
if( args_info.debug_given ) {
emul.debug = true;
}
+ if( args_info.start_paused_given ) {
+ emul.paused = true;
+ emul.speed = 25;
+ }
emul_start( &emul );
cpu_6502_reset( &cpu );