home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / turbo_c / tbug.arc / TBUG.DOC < prev    next >
Text File  |  1988-01-27  |  1KB  |  28 lines

  1. For those of you (like myself) who aren't C experts, here are a few notes
  2. on the use of TBUG.
  3.  
  4. To incorporate the debugger into your code just include the line:
  5.  
  6.                             debug_init ();
  7.  
  8. It can be most anywhere in the code, but Gary Mellor (the author) suggests
  9. putting the line near the beginning of the program.
  10.  
  11. I used the command line version with the following parameters to include the
  12. debugger in HELLO.C. This assumes that you've set up the directory structure
  13. as recommended in the TurboC manual. If you've used different names for the
  14. include and lib subdirectories, make the appropriate changes in the following
  15. command line:
  16.  
  17.         C:\TURBOC>tcc -y -ms -M -I.\include -L.\lib hello tbug.obj
  18.  
  19. If you want to make any changes to the debugger, recompile it to .OBJ with
  20. the following line:
  21.  
  22.         C:\TURBOC>tcc -y -ms -c -I.\include -L.\lib tbug
  23.  
  24. Your new version of TBUG.OBJ will then be ready for use.
  25.  
  26. Enjoy!
  27. Larry Fogg - Micro Cornucopia
  28.