mirror of
https://github.com/cc65/cc65.git
synced 2024-12-22 12:30:41 +00:00
fixed endless loop exit->enterdesktop->exit->...
git-svn-id: svn://svn.cc65.org/cc65/trunk@2063 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
92e29121d3
commit
c7bcd948a8
@ -8,10 +8,10 @@
|
||||
.import __RAM_START__, __RAM_SIZE__ ; Linker generated
|
||||
.import initlib, donelib
|
||||
.import callmain
|
||||
.import _EnterDeskTop
|
||||
.import zerobss
|
||||
.importzp sp
|
||||
.export _exit
|
||||
.include "../inc/jumptab.inc"
|
||||
|
||||
; ------------------------------------------------------------------------
|
||||
; Create an empty LOWCODE segment to avoid linker warnings
|
||||
@ -47,4 +47,4 @@
|
||||
|
||||
_exit: jsr donelib ; Run module destructors
|
||||
|
||||
jmp _EnterDeskTop ; return control to the system
|
||||
jmp EnterDeskTop ; return control to the system
|
||||
|
@ -6,9 +6,7 @@
|
||||
|
||||
; void EnterDeskTop (void);
|
||||
|
||||
.export _EnterDeskTop
|
||||
.import _exit
|
||||
|
||||
.include "../inc/jumptab.inc"
|
||||
.export _EnterDeskTop
|
||||
|
||||
_EnterDeskTop = _exit
|
||||
|
Loading…
Reference in New Issue
Block a user