j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Author: wmb Date: 2007-08-19 20:13:20 +0200 (Sun, 19 Aug 2007) New Revision: 569
Modified: dev/ne2000/ne2000.fth Log: ne2000 driver - fixed a typo - OVR was spelled OVER, thus possibly causing a bug in the "overrun" routine.
Modified: dev/ne2000/ne2000.fth =================================================================== --- dev/ne2000/ne2000.fth 2007-08-19 01:51:23 UTC (rev 568) +++ dev/ne2000/ne2000.fth 2007-08-19 18:13:20 UTC (rev 569) @@ -433,7 +433,7 @@ \ updated the boundary register, or determined that there really were \ no new packets in the ring.
- OVER isr! \ Clear the overrun interrupt bit + OVR isr! \ Clear the overrun interrupt bit set-tx-mode \ Take the NIC out of loopback
\ Resend any incomplete transmission @@ -446,7 +446,7 @@ : recv-690-overrun ( -- ) false to is-overrun-690 boundary@ boundary! \ rewrite bndry with itself - OVER isr! \ Clear overrun interrupt bit + OVR isr! \ Clear overrun interrupt bit ; [then]