home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / ASM / ALIB40.ZIP / ALIB4A.ZIP / HINTS.DOC < prev    next >
Encoding:
Text File  |  1997-12-20  |  1.1 KB  |  33 lines

  1. File HINTS.DOC
  2.  
  3. How do I find a function?
  4.  
  5.   The file SUMMARY.DOC is a good place to start looking.  If one
  6.   of the sample programs uses similiar logic it is also a good
  7.   source of information.  Finally, the source files are the final
  8.   documentation and are named to indicate function groups.
  9.  
  10. How do I find more about a function?
  11.  
  12.   The SCAN program is ideal for seeing who uses a function and how.
  13.   It also will find the source file, and any place the function is
  14.   mentioned in the documentation.  For example:
  15.  
  16.      SCAN *.* dword_to_hex
  17.  
  18.   The above will find all dword to hex functions anywhere in the
  19.   current directory.  To just search in the sample programs and
  20.   source files use:
  21.  
  22.     SCAN *.asm dword_to_hex
  23.  
  24. How do I write simple programs without using the built in memory
  25. manager.
  26.  
  27.   Using the TEMPLATE.ASM with its built in memory manager is the
  28.   safest way to use ALIB, but isn't necessary.  The code timer
  29.   is one of the sample programs and has an example of disabling
  30.   the memory manager.  Some of the other sample programs borrow
  31.   souce from library and do not make any library calls (CALC.ASM)
  32.  
  33.