From: Alan Cox Date: Sat, 10 Jan 2015 14:47:26 +0000 (+0000) Subject: crt0.s: load $FF into S not $0 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=70e1c59f0e40a1ff2c0eb516792c1153f84582a6;p=FUZIX.git crt0.s: load $FF into S not $0 --- diff --git a/Kernel/platform-tgl6502/crt0.s b/Kernel/platform-tgl6502/crt0.s index 04a569bf..0b5f8c46 100644 --- a/Kernel/platform-tgl6502/crt0.s +++ b/Kernel/platform-tgl6502/crt0.s @@ -27,7 +27,7 @@ sei ; interrupts off cld ; decimal off - ldx #$00 + ldx #$FF txs ; Stack (6502 not C) ;