home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ZSYS / SIMTEL20 / SYSLIB / SLIB4.LBR / LUDDEF.LIB next >
Text File  |  2000-06-30  |  1KB  |  35 lines

  1. ;
  2. ; LULIB Module: LUDDEF.LIB
  3. ; Author: Richard Conn
  4. ; Date: 8 August 85
  5. ; LULIB Version: 1.0
  6. ; LULIB Module Version: 1.0
  7. ;
  8.  
  9. ;
  10. ; The LUD (Library Utility Descriptor) is defined as follows:
  11. ;
  12. ;    LUD:
  13. ;        DS    2    ; Length of LU Directory (filled by LUINIT)
  14. ;        DS    2    ; Index of current entry (filled by LU*)
  15. ;        DS    2    ; Length of current entry (filled by LU*)
  16. ;        DS    11    ; Name of current file
  17. ;    LUD$FCB:
  18. ;        DS    1    ; Disk
  19. ;        DS    8    ; LU File Name (filled by user)
  20. ;        DS    3    ; LU File Type (should be LBR, filled by user)
  21. ;        DS    24
  22. ;
  23.  
  24. tbuff    equ    80h    ; temp buffer
  25. ;
  26. luidx    equ    12    ; offset to index in LU directory
  27. lulen    equ    14    ; offset to length in LU directory
  28. ;
  29. ludlen    equ    0    ; offset to LUD dir length
  30. ludidx    equ    ludlen+2; offset to LUD current index
  31. ludcnt    equ    ludidx+2; offset to LUD current count
  32. ludfn    equ    ludcnt+2; offset to LUD current file
  33. ludfcb    equ    ludfn+11; offset to LUD FCB
  34.  
  35.