command/DLOAD                                                   command/DLOAD
 
 NAME
     DLOAD -- Loads a program from disk into a memory
 
 ABBREVIATION
     d <shift> L

 SYNOPSIS
     DLOAD "<file>"[,D<drive>][,U<unit>]

 FUNCTION
     This command loads a program from disk into a memory. (Use LOAD to load 
     programs on tape.) You must supply a file name.
 
 INPUTS
     <file>  - file name and/or pattern
     <drive> - drive number
     <unit>  - drive unit number
 
 RESULT
     A program is loaded from disk into a memory.

 EXAMPLES
     DLOAD "DTRUCK"
         Searches the disk for the program "DTRUCK" and LOADs it.

     DLOAD (A$)
         LOADs a program from disk whose name is in the variable A$. You will
         get an error if A$ is empty.
 
 NOTES
     The DLOAD command can be used within a BASIC program to find and RUN 
     another program on disk. This is called chaining.
 
 BUGS
     None
 
 SEE ALSO
     DSAVE
     LOAD
     SAVE