home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / devcon / milan_1991 / devcon91.3 / debug / devel / lvo.doc < prev    next >
Text File  |  1992-09-01  |  1KB  |  37 lines

  1. lvo v36.18
  2. Copyright (c) 1990 Commodore-Amiga, Inc.  All Rights Reserved
  3. Usage: lvo library [function] [wedgeline [wedgeopts]]
  4. (needs FD: assign to where FD files are)
  5.  
  6.  
  7. LVO (in conjunction with FD files) can be used to
  8.  
  9.     - look up the C or assembler arguments for a function
  10.     - look up the LVO offset(s) for a function or whole library
  11.     - generate easy command lines for "Wedge"
  12.  
  13. Examples:
  14.  
  15. 1> lvo exec AvailMem
  16. exec.library  LVO $ff28 -216  AvailMem()
  17. AvailMem(requirements)(d1)
  18.  
  19. 1> lvo exec AvailMem wedgeline
  20. run wedge exec 0xff28 0x8002 0x8000 opt r   "c=AvailMem(requirements)(d1)"
  21.  
  22. 1> lvo intuition
  23. intuition.library  LVO $ffe2 -30  OpenIntuition()
  24. intuition.library  LVO $ffdc -36  Intuition()
  25. intuition.library  LVO $ffd6 -42  AddGadget()
  26. intuition.library  LVO $ffd0 -48  ClearDMRequest()
  27. intuition.library  LVO $ffca -54  ClearMenuStrip()
  28. etc.
  29.  
  30.  
  31. When using LVO to generate Wedge command lines, you probably want to
  32. redirect the output to a file.  Use concatentation redirection (>>)
  33. to append additional wedgelines to the same file.  Edit the file
  34. if necessary to add or change options (see wedge.doc).  Then execute
  35. the file.  When you are ready to kill all of the wedges, do Wedge KILLALL.
  36.  
  37.