;*; Updated on 25-Oct-94 at 8:07 PM by James A. Jarboe I V; edit time: 0:02:27
;
; PATCH ISAM.SYS with ISMPCH
;
; James A. Jarboe IV
; 409-295-8860
; GR/AM
;
; This Patch fixes a problem with ISAM.SYS not receiving the D6 flag value
; to properly handle WAIT'RECORD status.
; I can trace this problem back to February 1993 release of ISAM.SYS
;
; The code at ^O 11240 reads:
;       MOV #6, D7
;
; and it should be:
;       MOV D6, D7
;
; to properly handle the flags.
;
       COPY    PATCH
;
OHASH   534,133,036,346
NHASH   270,176,556,213
;
OVER    1,1,0,136.,0
NVER    1,1,0,136.,1.

;
=11240

       MOV     D6, D7                  ; Set flags.
END