/*** * Hardware_Ethernet.h * Interface du module de gestion du simulateur de carte Ethernet. * * voir hardware.ps section timer * pour le detail du matériel simulé par cette bibliothèque. * */ #ifndef HARDWARE_ETHERNET #define HARDWARE_ETHERNET extern int Eth0_Link ; extern int Eth0_DMASR ; extern int Eth0_DMABASE ; extern int Eth0_DMASIZE ; extern int Eth0_IRQ ; extern char *Eth0_MCADR ; extern int Eth0_UDPPORT ; extern int ENABLE_ETHERNET; /** * Initialisation du système de simulation du matériel. */ extern int init_Ethernet(); /** * Gestion des entrées/sorties associées à ce matériel. */ #endif