; ************************************************************************** ; ; *** REDIR PATCH FILE *** ; ; The following instructions should be used to patch the file ; REDIR30.COM to create REDIR.COM. ; ; ************************************************************************** ; ; PATCHING UNDER CP/M ; ------------------- ; ; ASM RED30PAT ; DDT REDIR30.COM ; ; -IRED30PAT.HEX ; -R ; -G0 ; ; SAVE 43 REDIR.COM ; ; ************************************************************************** ; ; PATCHING UNDER MP/M ; ------------------- ; ; ASM RED30PAT ; DDT REDIR30.COM ; ; -IRED30PAT.HEX ; -R ; -IREDIR.COM ; -W56 ; -G0 ; ; ************************************************************************** ; ORG 012FH ;DO NOT CHANGE THIS ; ; ************************************************************************** ; This is the drive defined as the "SYSTEM" drive. It is where files ; are searched for after an unsuccessful search on the default drive if the ; drive or user is not specified in the filename. This field affects CP/M ; only since under MP/M the system drive is defined automatically. The valid ; range for this field is from 1 to 16 decimal. ; ; A = 1, B = 2, ... P = 16 ; DB 1 ; ; ************************************************************************** ; This is the user area defined as the "SYSTEM" user. It is where files ; are searched for after an unsuccessful search on the default user if the ; drive or user is not specified in the filename. The valid range for this ; field is from 0 to 15 decimal. ; DB 0 ; ; ************************************************************************** ; This is the drive defined as the "TEMPORARY" drive. It is where the ; temporary file is made when REDIR is batch processing. This field affects ; CP/M only since MP/M the temporary drive is defined automatically. The ; valid range for this field is from 1 to 16 decimal. ; ; A = 1, B = 2, ... P = 16 ; DB 1 ; ; ************************************************************************** ; This is the user area defined as the "SYSTEM" user. It is where files ; are searched for after an unsuccessful search on the default user if the ; drive or user is not specified in the filename. The valid range for this ; field is from 0 to 15 decimal. ; DB 0 ; ; ************************************************************************** ; This is the name of the REDIR program. It is necessary when REDIR is ; batch processing. This must be 11 characters long. ; DB 'REDIR COM' ; ; *** IMPORTANT NOTE *** ; The name of the file must be changed here if you desire a name other ; than "REDIR COM". If you do change this field be sure to rename the file ; AFTER the patching sequence described in the beginning of this file. ; ; ************************************************************************** ; This is the name of the REDIR help file. It is a detailed help file ; that is displayed when "REDIR ?" is entered from the system prompt. This ; must be 11 characters long. ; DB 'REDIR HLP' ;Name of REDIR help patch area ; ; **************************************************************************