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 / BEEHIVE / OS / Z80D24SR.ARC / Z34CMN.LIB < prev    next >
Text File  |  1991-02-10  |  2KB  |  86 lines

  1.  
  2. ; Library:  Z34CMN.LIB
  3. ; Author:   Joe Wright
  4. ; Date:     23 March 1988
  5.  
  6. ; NZ-COM and all its associated files are Copyright (C) 1987, 1988
  7. ; by Joe Wright and by Alpha Systems Corporation.  This file is released
  8. ; for information and use by registered owners of NZ-COM for personal
  9. ; non-commercial purposes.  Any commercial use (resale) of any part of
  10. ; NZ-COM requires specific license by:
  11. ;
  12. ; Alpha Systems Corporation
  13. ; 711 Chatsworth Place
  14. ; San Jose, CA 95128
  15. ; 408/297-5594
  16.  
  17. ; As a replacement for Z3BASE.LIB, some usual equates.
  18.  
  19. base    equ    0        ; Base Page
  20.  
  21. false    equ    0
  22. true    equ    not false
  23.  
  24. no    equ    false
  25. yes    equ    true
  26.  
  27. off    equ    false
  28. on    equ    true
  29.  
  30. ; Named COMMON declarations start here.  For compatibility, these
  31. ; are the same names used by Bridger Mitchell's JetLDR.
  32.  
  33.     common    /_ENV_/
  34. z3env:                ; Z3 Environment descriptor
  35. z3envs    equ    yes        ; There is one
  36.  
  37. expath    equ    z3env+9        ; Address of External Path
  38. expaths    equ    10        ; Maximum 10 elements for MPATH
  39.  
  40. rcp    equ    z3env+12    ; Address of RCP
  41. rcps    equ    yes        ; Used as existence test, not size
  42.  
  43. fcp    equ    z3env+18    ; Address of FCB
  44. fcps    equ    yes        ; Used as existence test, not size
  45.  
  46. z3ndir    equ    z3env+21    ; Address of NDR
  47. z3ndirs    equ    yes        ; Used as existence test, not size
  48.  
  49. z3whl    equ    z3env+29h    ; Wheel byte address
  50. z3whls    equ    yes        ; There is a wheel
  51.  
  52. ccp    equ    z3env+63    ; CCP entry
  53. ccps    equ    z3env+65    ; Size
  54.  
  55. dos    equ    z3env+66    ; DOS entry (+6)
  56. doss    equ    z3env+68    ; Size
  57.  
  58. bio    equ    z3env+69    ; BIO entry
  59.  
  60.     common    /_SSTK_/
  61. shstk:                ; Top of Shell stack
  62. shstks    equ    yes        ; There is a shell stack
  63.  
  64.     common    /_MSG_/
  65. z3msg:                ; Message buffer
  66. z3msgs    equ    yes        ; There is one
  67.  
  68.     common    /_FCB_/
  69. extfcb:                ; External file control block
  70. extfcbs    equ    yes        ; There is one
  71.  
  72.     common    /_MCL_/
  73. z3cl:                ; Multiple command line
  74. z3cls    equ    yes        ; There is one
  75.  
  76.     common    /_XSTK_/
  77. extstk:                ; External stack
  78. extstks    equ    yes        ; There is one
  79.  
  80.     common    /_BIOS_/
  81. bios:
  82.  
  83.     cseg            ; Select Code Segment
  84.  
  85. ; End of Z34CMN.LIB
  86.