home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / beehive / program / tm2not10.arc / MAIN.MOD < prev    next >
Encoding:
Text File  |  1990-07-22  |  384 b   |  22 lines

  1. MODULE Main;
  2.  
  3. IMPORT IntHandler;
  4.  
  5. FROM ClockIO IMPORT ClkEI,
  6.                     ClkDI;
  7.  
  8.  
  9.  
  10. BEGIN
  11.   ClkEI;            (* turn on clock interrupts from PIO *)
  12.  
  13. (* The foreground program fits in here. Remember that this main module
  14. cannot be a monitor, and any modules it calls which cannot be interupted
  15. must be! *)
  16.  
  17.  
  18.  
  19.   ClkDI;               (* no interrupts & exit *)
  20.  
  21. END Main.
  22.