home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 1
/
ARM_CLUB_CD.iso
/
contents
/
sillies
/
silly1
/
!Rippler
/
c
/
vsync
< prev
Wrap
Text File
|
1990-03-05
|
167b
|
11 lines
extern int rippling;
extern void do_ripple(void);
int event_handler(_kernel_swi_regs *r, void *pw)
{
if (r.r[0] != 4)
return;
if (rippling == 1)
do_ripple();
}