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 / ZCPR3 / SYSNDR.LQB / SYSNDR.LIB
Text File  |  2000-06-30  |  1KB  |  83 lines

  1. ;  DATA FILE:  SYSNDR.LIB
  2. ;  AUTHOR:  Richard Conn
  3. ;  VERSION:  1.0
  4. ;  DATE:  24 Feb 84
  5.  
  6. ;
  7. ;    SYSNDR.LIB defines the structure of the memory-based named directory.
  8. ; It also defines a few elements for it and is suitable for enclosure in
  9. ; an NDR file.
  10. ;
  11. ;    The general structure is:
  12. ;
  13. ;        DB    Disk,User    ; A=1
  14. ;        DB    'NDIRNAME'    ; 8 chars
  15. ;        DB    'PASSWORD'    ; 8 chars
  16. ;        ...            ; other entries
  17. ;        DB    0        ; End of NDR
  18. ;
  19. defdu    macro    ?disk,?user
  20.     db    ?disk-'@'        ; Convert Disk
  21.     db    ?user            ; User is OK
  22.     endm
  23.  
  24. sysndr    macro
  25.     defdu    'A',0
  26.     db    'BASE    '
  27.     db    '        '
  28.  
  29.     defdu    'A',15
  30.     db    'ROOT    '
  31.     db    '        '
  32.  
  33.     defdu    'A',16
  34.     db    'HELP    '
  35.     db    '        '
  36.  
  37.     defdu    'B',0
  38.     db    'SCRATCH '
  39.     db    '        '
  40.  
  41.     defdu    'B',1
  42.     db    'ASM     '
  43.     db    '        '
  44.  
  45.     defdu    'B',2
  46.     db    'C       '
  47.     db    '        '
  48.  
  49.     defdu    'B',3
  50.     db    'PASCAL  '
  51.     db    '        '
  52.  
  53.     defdu    'B',4
  54.     db    'SCR     '
  55.     db    '        '
  56.  
  57.     defdu    'B',5
  58.     db    'BASIC   '
  59.     db    '        '
  60.  
  61.     defdu    'B',7
  62.     db    'TEXT    '
  63.     db    '        '
  64.  
  65.     defdu    'B',8
  66.     db    'CAT     '
  67.     db    '        '
  68.  
  69.     defdu    'B',9
  70.     db    'DATA    '
  71.     db    '        '
  72.  
  73.     defdu    'C',0
  74.     db    'BACKUP  '
  75.     db    '        '
  76.  
  77.     db    0        ;End of List
  78.     endm
  79.  
  80. ;
  81. ;  End of SYSNDR.LIB
  82. ;
  83.