home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / mbug / mbug175.arc / JRTMAN2.LBR / JRTMAN.0Z9 / JRTMAN.009
Text File  |  1979-12-31  |  2KB  |  56 lines

  1. .OP
  2.  
  3.       JRT Pascal  User's Guide     version 3.0         NOT FOR SALE   -119-
  4.  
  5.  
  6.  
  7.       9.  Customiz
  8.  
  9.  
  10.            External  procedures  and functions are compiled separately from
  11.       the main program.  They can be linked together with the main  program
  12.       using  the  Linker  (section 8 of this manual).  If this is not done,
  13.       they will be automatically loaded from disk into the computer's  main
  14.       storage  when  they  are  first  referenced.   If  a short-on-storage
  15.       condition arises, they may be purged from storage  if  they  are  not
  16.       currently active.
  17.  
  18.            Procedures  which  are rarely used, like initialization or error
  19.       handling, would not occupy main storage except  when  needed.   Also,
  20.       very  large  programs  might  be  divided  into  several phases, each
  21.       corresponding to an external procedure.
  22.  
  23.            The EXEC loads the external procedures from disk.  There  is  no
  24.       need  to  inform  EXEC on which disk each procedure resides - it will
  25.       search for them.  This means that you do NOT  have  to  put  all  the
  26.       program sections onto the A: disk.
  27.  
  28.            EXEC  and  the  compiler,  JRTPAS3,  contain 'disk search lists'
  29.       which specify which disks are available on the  system.  The  default
  30.       lists  are  set  to  'AB',  i.e.,  drives A: and B:.  The seach lists
  31.       should be  modified  to  reflect  the  hardware  configuration.   The
  32.       Customiz  program  is  provided  to modify the lists in both EXEC and
  33.       JRTPAS2 simultaneously.  Before running Customiz, be sure  that  both
  34.       EXEC  and  JRTPAS3  are  not  write  protected  files  or  on a write
  35.       proctected disk or drive.  To run Customiz, enter:
  36.  
  37.                   EXEC CUSTOMIZ
  38.  
  39.  
  40.            A new disk search list, with up to four  disk  letters,  may  be
  41.       specified.   The letters must be contiguous. NOTE that this list also
  42.       determines the SEQUENCE in which  the  disks  are  searched  for  the
  43.       external procedures and functions.
  44.  
  45.                   ABC           (note no spaces between letters)
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.       Copy compliments of Merle Schnick                SECTION 9:  Customiz
  56. .PAè