1 #define NE2000_PMEM_SIZE (32*1024)
2 #define NE2000_PMEM_START (16*1024)
3 #define NE2000_PMEM_END (NE2000_PMEM_SIZE+NE2000_PMEM_START)
4 #define NE2000_MEM_SIZE NE2000_PMEM_END
6 typedef struct NE2000State {
22 uint8_t phys[6]; /* mac address */
24 uint8_t mult[8]; /* multicast mask array */
28 uint8_t mem[NE2000_MEM_SIZE];
31 void ne2000_setup_io(NE2000State *s, unsigned size);
32 extern const VMStateDescription vmstate_ne2000;
33 void ne2000_reset(NE2000State *s);
34 int ne2000_can_receive(VLANClientState *vc);
35 ssize_t ne2000_receive(VLANClientState *vc, const uint8_t *buf, size_t size_);