default stack pointer to $FD instead of $FF seems thats more accurate

This commit is contained in:
zeromus 2012-10-30 03:39:17 +00:00
parent 67b16af0e7
commit 8166a4320d
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}