"Timothy Legge" <tl...@ro...> writes:
> > > However, from there, the PC reboots. (That was using the 3c509 nic
> with
> > > the udelay replaced by DELAY. Any thoughts on why udelay doe not
> work
> > > correctly on my 486 would be welcomed as well).
> >
> > Does timer channel 2 not work on your 486? Otherwise udelay
> > should work.
>
> How would I know?
A quick test is to delay for a second and see time it:
A snippet of code like this. Timer channel 2 is the underling
mechanism used for the delays.
printf("starting\n");
mdelay(1000);
printf("done\n");
Eric
|