; DATA FILE: SYSNDR.LIB
; AUTHOR: Richard Conn
; VERSION: 1.0
; DATE: 24 Feb 84
;
; SYSNDR.LIB defines the structure of the memory-based named directory.
; It also defines a few elements for it and is suitable for enclosure in
; an NDR file.
;
; The general structure is:
;
; DB Disk,User ; A=1
; DB 'NDIRNAME' ; 8 chars
; DB 'PASSWORD' ; 8 chars
; ... ; other entries
; DB 0 ; End of NDR
;
defdu macro ?disk,?user
db ?disk-'@' ; Convert Disk
db ?user ; User is OK
endm