search for: pcnetstate

Displaying 1 result from an estimated 1 matches for "pcnetstate".

Did you mean: icsetstate
2006 Mar 24
2
[PATCH] qemu pcnet emulation fixes
...s able to get around that problem. Signed-off-by: Don Fry <brazilnut@us.ibm.com> --- tools/ioemu/hw/orig.pcnet.h 2006-03-24 12:08:37.000000000 -0800 +++ tools/ioemu/hw/pcnet.h 2006-03-24 12:16:02.000000000 -0800 @@ -177,6 +177,26 @@ struct pcnet_RMD { } rmd3; }; +typedef struct PCNetState_st PCNetState; + +struct PCNetState_st { + PCIDevice dev; + NetDriverState *nd; + int mmio_io_addr, rap, isr, lnkst; + target_phys_addr_t rdra, tdra; + uint8_t prom[16]; + uint16_t csr[128]; + uint16_t bcr[32]; + uint64_t timer; + int recv_pos; + uint8_t tx_buffer[2048...