1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-29 02:55:20 +00:00

Removed initialization of the stack from none.lib

This commit is contained in:
bauen1 2018-01-04 13:54:00 +01:00
parent 884dfcf3c1
commit 4759d3956e
No known key found for this signature in database
GPG Key ID: FF0AAF5E0812BA9C

View File

@ -9,9 +9,6 @@
.segment "STARTUP"
cld
ldx #$FF
txs
lda #<(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
ldx #<(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
sta sp
@ -22,4 +19,4 @@
_exit: pha
jsr donelib
pla
brk
rts