2019-04-12 19:54:16 +03:00
|
|
|
/*
|
|
|
|
* SMSC 91C111 Ethernet interface emulation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2005 CodeSourcery, LLC.
|
|
|
|
* Written by Paul Brook
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HW_NET_SMC91C111_H
|
|
|
|
#define HW_NET_SMC91C111_H
|
|
|
|
|
|
|
|
#include "net/net.h"
|
|
|
|
|
2023-10-23 11:37:35 +03:00
|
|
|
void smc91c111_init(uint32_t, qemu_irq);
|
2019-04-12 19:54:16 +03:00
|
|
|
|
|
|
|
#endif
|