;************************************************************ ; MAIN SOURCE FILE FOR PWD.CFG ;************************************************************ ;the following two do not generate ANY code. ;they contain nothing but variable and ;Macro definitions and comments. include cnfgdef ;config definitions, macros include pwddef ;PWD specific definitions ;************************************************************ ; START OF OVERLAY CODE ;************************************************************ rst 0 ;for safety - overlay won't execute! dw menu1 ;for relocation of addresses include pwdmen1 ;first line is menu1:..... scr1: include pwdscr1 help1: include pwdhlp1 ;----------------------------------- ; DATA USED BY CASE TABLES ;data pair for representing bit values in screen image ;these are null terminated strings. Note the 'DZ'. yndata: dz 'YES' ;for 1=yes nydata: dz ' NO' dz 'YES' ;for 0=yes (inverted logic) y_data: dz '+' ;for 1=+(=yes) dz '_' ;for 0=_(=no) ;Value ranges for byte and word data range1: dw 40h,4fh ;min, max msg buffer offsets range2: dw 1,4 ;legal sys file number range range3: dw 1,255 ;legal sizes for PRL hdr ;========================================================= end