Dec 192017
 
Debugger for Turbo C.
File TBUG.ZIP from The Programmer’s Corner in
Category C Source Code
Debugger for Turbo C.
File Name File Size Zip Size Zip Type
DEMO.C 1100 560 deflated
DEMO.EXE 28902 18686 deflated
DEMO.MAP 12893 3389 deflated
TBUG.C 20991 5023 deflated
TBUG.DOC 1002 524 deflated
TBUG.OBJ 9316 5884 deflated

Download File TBUG.ZIP Here

Contents of the TBUG.DOC file


For those of you (like myself) who aren't C experts, here are a few notes
on the use of TBUG.

To incorporate the debugger into your code just include the line:

debug_init ();

It can be most anywhere in the code, but Gary Mellor (the author) suggests
putting the line near the beginning of the program.

I used the command line version with the following parameters to include the
debugger in HELLO.C. This assumes that you've set up the directory structure
as recommended in the TurboC manual. If you've used different names for the
include and lib subdirectories, make the appropriate changes in the following
command line:

C:\TURBOC>tcc -y -ms -M -I.\include -L.\lib hello tbug.obj

If you want to make any changes to the debugger, recompile it to .OBJ with
the following line:

C:\TURBOC>tcc -y -ms -c -I.\include -L.\lib tbug

Your new version of TBUG.OBJ will then be ready for use.

Enjoy!
Larry Fogg - Micro Cornucopia


 December 19, 2017  Add comments

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)