◄Example► ◄Back► ◄Contents► ◄Index► ────────────────────────────────────────────────────────────────────────────── ;* NewCritErr - A primitive handler for Interrupt 24h that can take control ;* when a critical error occurs during a DOS operation. For an example of ;* how to use such a handler and install its address into the interrupt ;* vector table, see the MiscDemo program and the Exec example procedure. ;* ;* Shows: DOS Interrupt - 24h (Critical-Error Handler Address) NewCritErr PROC sub al, al ; Tell DOS to ignore error iret ; Return from handler ; without taking action NewCritErr ENDP -♦-