1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +00:00
cc65/libsrc/apple2/reboot.s

22 lines
378 B
ArmAsm

;
; Oliver Schmidt, 14.09.2009
;
; void rebootafterexit (void);
;
.constructor initreboot
.export _rebootafterexit
.import done, return
_rebootafterexit := return
.segment "INIT"
initreboot:
; Quit to PWRUP
lda #<$FAA6
ldx #>$FAA6
sta done
stx done+1
rts