home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / compiler / nasm20b / nasm_src / ldebug.h < prev    next >
Text File  |  1993-01-19  |  424b  |  14 lines

  1. #if VERSION
  2. # define INTEGRITY_CHECK()
  3. # define POINTER_CHECK( p)
  4. # define LABEL_CHECK( p)
  5. # define ADD_WATCH( p, size, name)
  6. # define DEL_WATCH( p)
  7. #else
  8. # define INTEGRITY_CHECK()         do_check()
  9. # define POINTER_CHECK( p)         bad_pointer( p)
  10. # define LABEL_CHECK( p)           check_label( p)
  11. # define ADD_WATCH( p, size, name) add_watch( p, size, name)  
  12. # define DEL_WATCH( p)             del_watch( p)  
  13. #endif
  14.