mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
422 B
18 lines
422 B
;===============================================================================
|
|
;
|
|
; REBOOT - Execute HBIOS reset to restart to boot loader.
|
|
;
|
|
;===============================================================================
|
|
;
|
|
BID_BOOT .EQU $00
|
|
HB_BNKCALL .EQU $FFF9
|
|
|
|
.org $100
|
|
|
|
LD A,BID_BOOT ; BOOT BANK
|
|
LD HL,0 ; ADDRESS ZERO
|
|
CALL HB_BNKCALL ; DOES NOT RETURN
|
|
HALT
|
|
|
|
.end
|
|
|