1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-03 11:29:42 +00:00
cc65/libsrc/apple2/reboot.s

22 lines
387 B
ArmAsm
Raw Normal View History

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