; This is a patch that can be applied to HSH Version 1.5 to prevent it from
; being rerun with the GO command (I often forget that HSH is running and try
; to use GO). It works by changing the intial JP command to a RET. To apply
; this patch, assemble it to a HEX file and overlay it using MLOAD as follows:
;
; MLOAD HSHNEW=HSH.COM,HSH15PAT
;
; Jay Sage, January 4, 1987
org 100h
jp 2180h ; Jump to patch at end of HSH
org 2180h
ld a,0c9h ; RET opcode
ld (100h),a ; Stick it in at 100h
jp 16b8h ; Continue with original HSH code