home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / utils / asmutl / buffers.lbr / BVER.MZC / BVER.MAC
Text File  |  1987-01-14  |  1KB  |  29 lines

  1. bver    equ    14
  2. ; 1.4    86/12/02. Revised pfnmdu and pfnm, together with skipblks
  3. ;    and nextch.  Added routines nxt, lastch, and qwhite.
  4. ;    output of getdu different.  The file parsing routines now
  5. ;    exit with de pointing to the terminator character, and
  6. ;    pfnm/pfnmdu return the wild card count in a.  Previous user
  7. ;    interface was awkward.  These routines are now virtually
  8. ;    identical to those in CCP+ (which use Z80 code, and would
  9. ;    have been in DOS+ if room were available).  Added options
  10. ;    (parser), tdzsf (dec out in fixed field), blk, blks.
  11. ; 1.3    86/11/26. Revised move (exchanged to/from pointers
  12. ;    to agree with ldir).  Added salloc, sbcalloc, lhlstk
  13. ;    stack frame allocation/addressing. Added utilities
  14. ;    dcmp, dsub, mxchg, and endata marker for data segment.
  15. ; 1.2    86/05/12. Added wildxpnd, fcwildnm, nxtout, fncopy,
  16. ;    wildchk, move, nextfn and corrected pfnm
  17. ; 1.1    Added imul,idiv,c12bc,dten,couta,tdzs,tadzs,tfnam.
  18. ;    Moved dos to end. 86/01/30
  19. ;
  20. crite:    db    0dh,'BUFFLIB v'
  21.     db    bver / 10 + '0', '.', bver MOD 10 + '0'
  22.     db    ' copyright (c) 1986, C.B. Falconer$',01ah
  23. ;
  24. ; return a=bufflib version in use, de pointer to version msg.
  25. ; a,d,e
  26. .bver::    mvi    a,bver
  27.     lxi    d,crite
  28.     ret
  29. ╔W