ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/dummy/ether_dummy.cpp
Revision: 1.7
Committed: 2008-01-01T09:47:39Z (16 years, 5 months ago) by gbeauche
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +1 -1 lines
Log Message:
Happy New Year!

File Contents

# User Rev Content
1 gbeauche 1.1 /*
2     * ether_dummy.cpp - Ethernet device driver, dummy implementation
3     *
4 gbeauche 1.7 * Basilisk II (C) 1997-2008 Christian Bauer
5 gbeauche 1.1 *
6     * This program is free software; you can redistribute it and/or modify
7     * it under the terms of the GNU General Public License as published by
8     * the Free Software Foundation; either version 2 of the License, or
9     * (at your option) any later version.
10     *
11     * This program is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with this program; if not, write to the Free Software
18     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19     */
20    
21     #include "sysdeps.h"
22    
23 gbeauche 1.5 #include "cpu_emulation.h"
24 gbeauche 1.1 #include "main.h"
25     #include "ether.h"
26     #include "ether_defs.h"
27    
28     #define DEBUG 0
29     #include "debug.h"
30    
31    
32     /*
33     * Init ethernet
34     */
35    
36     void EtherInit(void)
37     {
38     }
39    
40    
41     /*
42     * Exit ethernet
43     */
44    
45     void EtherExit(void)
46     {
47     }
48    
49    
50     /*
51     * Get ethernet hardware address
52     */
53    
54 gbeauche 1.6 void AO_get_ethernet_address(uint32 addr)
55 gbeauche 1.1 {
56     }
57    
58    
59     /*
60     * Enable multicast address
61     */
62    
63 gbeauche 1.6 void AO_enable_multicast(uint32 addr)
64 gbeauche 1.1 {
65     }
66    
67    
68     /*
69     * Disable multicast address
70     */
71    
72 gbeauche 1.6 void AO_disable_multicast(uint32 addr)
73 gbeauche 1.1 {
74     }
75    
76    
77     /*
78     * Transmit one packet
79     */
80    
81 gbeauche 1.6 void AO_transmit_packet(uint32 mp)
82 gbeauche 1.1 {
83     }
84    
85    
86     /*
87     * Ethernet interrupt
88     */
89    
90     void EtherIRQ(void)
91     {
92     }