[BACK]Return to netwr.c CVS log [TXT][DIR] Up to [local] / sys / arch / mvmeppc / stand / libbug

Annotation of sys/arch/mvmeppc/stand/libbug/netwr.c, Revision 1.1.1.1

1.1       nbrk        1: /*     $OpenBSD: netwr.c,v 1.3 2004/01/24 21:12:38 miod Exp $  */
                      2:
                      3: /*
                      4:  * bug routines -- assumes that the necessary sections of memory
                      5:  * are preserved.
                      6:  */
                      7: #include <sys/types.h>
                      8:
                      9: #include "libbug.h"
                     10:
                     11: /* returns 0: success, nonzero: error */
                     12: int
                     13: mvmeprom_netwr(arg)
                     14:        struct mvmeprom_netio *arg;
                     15: {
                     16:        asm volatile ("mr 3, %0": : "r" (arg));
                     17:        MVMEPROM_CALL(MVMEPROM_NETWR);
                     18:        return (arg->status);
                     19: }

CVSweb