Use AX paradigm for stack initalization.

This commit is contained in:
Oliver Schmidt
2016-03-07 01:44:19 +01:00
parent d8c31cf1d3
commit 69fbcb30fd
4 changed files with 14 additions and 15 deletions

View File

@@ -27,9 +27,9 @@ start:
; Set up the stack.
lda #<(__RAM_START__ + __RAM_SIZE__ - __RESERVED_MEMORY__)
ldx #>(__RAM_START__ + __RAM_SIZE__ - __RESERVED_MEMORY__)
sta sp
lda #>(__RAM_START__ + __RAM_SIZE__ - __RESERVED_MEMORY__)
sta sp+1 ; Set argument stack ptr
stx sp+1 ; Set argument stack ptr
; Call the module constructors.