home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_07_08 / v7n8120a.txt < prev    next >
Text File  |  1989-10-02  |  439b  |  22 lines

  1. ******************************************************************************
  2.  
  3.                                Listing 1
  4.  
  5.  
  6. void main()
  7. {
  8.      initialize();
  9.      for( ; ; )
  10.      {
  11.           toggle_watchdog_timer();
  12.           scan_keypad();
  13.           process_keystroke();
  14.           toggle_watchdog_timer();
  15.           update_indicator_lamps();
  16.           check_serial_input();
  17.           check_tape_transport();
  18.      }
  19. }
  20.  
  21.  
  22.