Linking MrDebug with CA-Clipper 5.3x
How to include MrDebug into your programs
──────────────────────────────────────────────────────────────────────────────

To include MrDebug in your application instead of CLD, all you have to do
is compile at least one of your .PRGs with the /b switch and link MrDebug
into your application by adding the following two lines:

@MrDMid53 // for Blinker (real mode - mid overlay)
@MrDMin53 // for Blinker (real mode - min overlay)
@MrDMax53 // for Blinker (real mode - max overlay)
FI MrDBG53.Lib // MrDebug for 5.3 extensions
LIB MrDebug.LIB // Main MrDebug library

to your link script before CLIPPER.LIB or any references to CLIPPER.LIB.

Notes:

If you forget to link in MRDBG53.LIB the application will remind you when
your start it up.

Remember, MrDebug is a complete replacement for CLD, so remove all
references to CLD.

As with CLD, <Alt><D> invokes MrDebug and you must have at least one source
code file compiled with the /b switch.