Assembly Language Help (alang.hlp) (Table of Contents; Topic list)
NewCritErr
 Map                                       Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
;* NewCritErr - Handler for Interrupt 24h.
 
NewCritErr PROC FAR
 
        sub     al, al                  ; Tell DOS to ignore error
        iret                            ; Return from handler
                                        ;   without taking action
NewCritErr ENDP
 
        END
                                    -♦-