From 8166a4320d289edbd41f42501b9524e5d4e36194 Mon Sep 17 00:00:00 2001 From: zeromus Date: Tue, 30 Oct 2012 03:39:17 +0000 Subject: [PATCH] default stack pointer to $FD instead of $FF seems thats more accurate --- src/x6502.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x6502.cpp b/src/x6502.cpp index 5e59b718..9384d157 100644 --- a/src/x6502.cpp +++ b/src/x6502.cpp @@ -406,7 +406,7 @@ void X6502_Init(void) void X6502_Power(void) { _count=_tcount=_IRQlow=_PC=_A=_X=_Y=_P=_PI=_DB=_jammed=0; - _S=0xFF; + _S=0xFD; timestamp=0; X6502_Reset(); }