2017-05-09 22:09:55 -04:00
|
|
|
/*
|
|
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
|
|
|
|
*
|
|
|
|
|
* This file is part of the 86Box distribution.
|
|
|
|
|
*
|
|
|
|
|
* Definitions for the NE2000 ethernet controller.
|
|
|
|
|
*
|
2018-01-28 12:15:57 +01:00
|
|
|
* Version: @(#)net_ne2000.h 1.0.5 2018/01/28
|
2017-05-09 22:09:55 -04:00
|
|
|
*
|
|
|
|
|
* Author: Fred N. van Kempen, <decwiz@yahoo.com>
|
|
|
|
|
*/
|
2017-05-06 17:48:33 +02:00
|
|
|
#ifndef NET_NE2000_H
|
|
|
|
|
# define NET_NE2000_H
|
|
|
|
|
|
|
|
|
|
|
2018-01-28 03:15:01 +01:00
|
|
|
enum {
|
|
|
|
|
NE2K_NONE = 0,
|
2018-01-28 12:15:57 +01:00
|
|
|
NE2K_NE1000, /* 8-bit ISA NE1000 */
|
|
|
|
|
NE2K_NE2000, /* 16-bit ISA NE2000 */
|
|
|
|
|
NE2K_RTL8019AS, /* 16-bit ISA PnP Realtek 8019AS */
|
|
|
|
|
NE2K_RTL8029AS /* 32-bit PCI Realtek 8029AS */
|
2018-01-28 03:15:01 +01:00
|
|
|
};
|
2017-05-12 05:05:20 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
extern device_t ne1000_device;
|
2017-05-06 17:48:33 +02:00
|
|
|
extern device_t ne2000_device;
|
2018-01-28 03:15:01 +01:00
|
|
|
extern device_t rtl8019as_device;
|
2017-05-06 17:48:33 +02:00
|
|
|
extern device_t rtl8029as_device;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /*NET_NE2000_H*/
|