home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / utils / squsq / rosuncr.lbr / ROS.PZS / ROS.PAS
Encoding:
Pascal/Delphi Source File  |  1988-01-27  |  3.0 KB  |  66 lines

  1. (*****************************************************************************)
  2. (*                                                                           *)
  3. (*                       ROS - Remote Operating System                       *)
  4. (*                               as of 7Mar86                                *)
  5. (*                                                                           *)
  6. (*                           Copyright (c) 1985 by                           *)
  7. (*                                                                           *)
  8. (*                                Steven Fox                                 *)
  9. (*                                                                           *)
  10. (*                      All commercial rights reserved.                      *)
  11. (*                                                                           *)
  12. (*              Turbodos/Archive vers 03nov87 for W. Brimhall                *)
  13. (*                                                                           *)
  14. (*****************************************************************************)
  15.  
  16. { 07nov87 wb - Added include statements for new Archive directory and
  17.                File find command files.
  18.   11nov86 wb - Renamed drivers for use with Turbodos, Wyse terminal
  19.                and Courier 2400 modem.  }
  20.  
  21.  
  22. program ros;
  23. {$C-}
  24.  
  25.   { System definitions }
  26. {$I ROSDEF.INC}
  27.   { Turbo Toolbox }
  28. {$I ACCESS.BOX}
  29. {$I GETKEY.BOX}
  30.  
  31. var
  32.   DatF: DataFile;
  33.   IdxF: IndexFile;
  34.  
  35.   { Machine dependent code }
  36. {$I tdoswy60.MCH}                           { teminal and channel routines }
  37. {$I courier.MDM}                            { Modem routines }
  38. {$I tdos.CLK}                               { Clock routines }
  39.  
  40.   { System kernel }
  41. {$I ROSKIO.INC}                             { I/O drivers - resident }
  42. {$I ROSKMS.INC}                             { Miscellaneous - resident }
  43. {$I ROSKOV.INC}                             { Miscellaneous - overlayed }
  44.  
  45.   { Turbo Toolbox }
  46. {$I ADDKEY.ROS}
  47. {$I DELKEY.ROS}
  48.  
  49.   { Force a new overlay }
  50. type dummy = char;
  51.  
  52. {$I ROSMSG.INC}                             { Message sub-system }
  53. {$I ROSFIL.INC}                             { File sub-system }
  54. {$I ROSARC.INC}                             { Archive Directory routines }
  55. {$I ROSFFND1.INC}                           { File Find routines }
  56. {$I ROSSND.INC}                             { File send routines }
  57. {$I ROSRCV.INC}                             { File receive routines }
  58. {$I ROSUTL.INC}                             { Utility sub-system }
  59. {$I ROSSYU.INC}                             { Sysop sub-system, user file routines }
  60. {$I ROSSYM.INC}                             { Sysop sub-system, miscellaneous routines }
  61. {$I ROSSYP.INC}                             { Sysop sub-system, purge routines }
  62. {$I ROSSYX.INC}                             { Sysop sub-system, extended routines }
  63. {$I ROSINI.INC}                             { System initialization/shutdown }
  64.  
  65. {$I ROSMAIN.INC}
  66.