INSTRUCTIONS (02/15/2005)
------------
This patch will prevent BASIC from pausing on a fatal error.

Normally, BASIC says "Press a key to continue", or
"Hit any key to return to system" during any fatal error.

If the program were allowed to recycle, it would do so without trouble, but
BASIC will hold up your board until you press a key.

FILES:
------
Patch the runtime libraries which are linked in when compiling with /O,
and the runtime executables which are used when /O is not used:

  For QB 4.5 patch the files:

    BCOM45.LIB  standalone library
    BRUN45.EXE  runtime module

  For BASCOM 7.0/7.10 patch the files:

    BCL71xyz.LIB  standalone libraries
    BRT71xyz.EXE  runtime modules, where:

      x = A - alternate mathpack, E - 80x86/emulator mathpack.
          (E is default unless you compile in BC with /FPa)
      y = N - near strings, F - far strings.
          (N is default unless you compile in BC with /FS)
      z = R - real mode, P - protected mode.
          (R is default for DOS, P is used in OS/2)

  For VB DOS 1.0 patch the files:

    VBDCL10x.LIB  standalone libraries
    VBDRT10x.EXE  runtime modules, where:

      x=A - alternate math package, E - 80x87 or emulator math package.

PATCH
-----
Search for the string:

"B8 07 0C CD 21"

and change "CD 21" to "90 90".

where 90 is the hex opcode for the NOP instruction.

Now, whenever BASIC can't handle an error, it will allow your program
to recycle.

-end-
