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 / CPM / BDOS / Z80DS231.LBR / Z34CMN.LZB / Z34CMN.LIB
Text File  |  2000-06-30  |  2KB  |  84 lines

  1.  
  2. ; Library:  Z34CMN.LIB                    March 23, 1988
  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. NO    EQU    0
  22. YES    EQU    NOT NO
  23. ;
  24. ;
  25. OFF    EQU    NO
  26. ON    EQU    YES
  27. ;
  28. ; Named COMMON declarations start here.  For compatibility, these
  29. ; are the same names used by Bridger Mitchell's JetLDR.
  30. ;
  31.     COMMON    /_ENV_/
  32. Z3ENV:    DS    0    ; Z3 Environment descriptor
  33. Z3ENVS    EQU    YES        ; There is one
  34. ;
  35. EXPATH    EQU    Z3ENV+9        ; Address of External Path
  36. EXPATHS    EQU    10        ; Maximum 10 elements for MPATH
  37. ;
  38. RCP    EQU    Z3ENV+12    ; Address of RCP
  39. RCPS    EQU    YES        ; Used as existence test, not size
  40. ;
  41. FCP    EQU    Z3ENV+18    ; Address of FCB
  42. FCPS    EQU    YES        ; Used as existence test, not size
  43. ;
  44. Z3NDIR    EQU    Z3ENV+21    ; Address of NDR
  45. Z3NDIRS    EQU    YES        ; Used as existence test, not size
  46. ;
  47. Z3WHL    EQU    Z3ENV+29H    ; Wheel byte address
  48. Z3WHLS    EQU    YES        ; There is a wheel
  49. ;
  50. CCP    EQU    Z3ENV+63    ; CCP entry
  51. CCPS    EQU    Z3ENV+65    ; Size
  52. ;
  53. DOS    EQU    Z3ENV+66    ; DOS entry (+6)
  54. DOSS    EQU    Z3ENV+68    ; Size
  55. ;
  56. BIO    EQU    Z3ENV+69    ; BIO entry
  57. ;
  58.     COMMON    /_SSTK_/
  59. SHSTK:                ; Top of Shell stack
  60. SHSTKS    EQU    YES        ; There is a shell stack
  61. ;
  62.     COMMON    /_MSG_/
  63. Z3MSG:                ; Message buffer
  64. Z3MSGS    EQU    YES        ; There is one
  65. ;
  66.     COMMON    /_FCB_/
  67. EXTFCB:                ; External file control block
  68. EXTFCBS    EQU    YES        ; There is one
  69. ;
  70.     COMMON    /_MCL_/
  71. Z3CL:                ; Multiple command line
  72. Z3CLS    EQU    YES        ; There is one
  73. ;
  74.     COMMON    /_XSTK_/
  75. EXTSTK:                ; External stack
  76. EXTSTKS    EQU    YES        ; There is one
  77. ;
  78.     COMMON    /_BIOS_/
  79. BIOS:
  80. ;
  81.     CSEG            ; Select Code Segment
  82. ;
  83. ; End of Z34CMN.LIB
  84.