ne2000-isa.c (7fa124b273acd22a808e742ead78c065ccd9b4c4) ne2000-isa.c (f394b2e20d9a666fb194fb692179a0eeaca5daea)
1/*
2 * QEMU NE2000 emulation -- isa bus windup
3 *
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

--- 30 unchanged lines hidden (view full) ---

39 ISADevice parent_obj;
40
41 uint32_t iobase;
42 uint32_t isairq;
43 NE2000State ne2000;
44} ISANE2000State;
45
46static NetClientInfo net_ne2000_isa_info = {
1/*
2 * QEMU NE2000 emulation -- isa bus windup
3 *
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

--- 30 unchanged lines hidden (view full) ---

39 ISADevice parent_obj;
40
41 uint32_t iobase;
42 uint32_t isairq;
43 NE2000State ne2000;
44} ISANE2000State;
45
46static NetClientInfo net_ne2000_isa_info = {
47 .type = NET_CLIENT_OPTIONS_KIND_NIC,
47 .type = NET_CLIENT_DRIVER_NIC,
48 .size = sizeof(NICState),
49 .receive = ne2000_receive,
50};
51
52static const VMStateDescription vmstate_isa_ne2000 = {
53 .name = "ne2000",
54 .version_id = 2,
55 .minimum_version_id = 0,

--- 98 unchanged lines hidden ---
48 .size = sizeof(NICState),
49 .receive = ne2000_receive,
50};
51
52static const VMStateDescription vmstate_isa_ne2000 = {
53 .name = "ne2000",
54 .version_id = 2,
55 .minimum_version_id = 0,

--- 98 unchanged lines hidden ---