cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

lan9118.h (417B)


      1/*
      2 * SMSC LAN9118 Ethernet interface emulation
      3 *
      4 * Copyright (c) 2009 CodeSourcery, LLC.
      5 * Written by Paul Brook
      6 *
      7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
      8 * See the COPYING file in the top-level directory.
      9 */
     10
     11#ifndef HW_NET_LAN9118_H
     12#define HW_NET_LAN9118_H
     13
     14#include "net/net.h"
     15
     16#define TYPE_LAN9118 "lan9118"
     17
     18void lan9118_init(NICInfo *, uint32_t, qemu_irq);
     19
     20#endif