home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / sillies / silly1 / !Rippler / c / vsync < prev   
Text File  |  1990-03-05  |  167b  |  11 lines

  1. extern int rippling;
  2. extern void do_ripple(void);
  3.  
  4. int event_handler(_kernel_swi_regs *r, void *pw)
  5. {
  6.     if (r.r[0] != 4)
  7.         return;
  8.     if (rippling == 1)
  9.         do_ripple();
  10. }
  11.