1 |
/* |
2 |
* ether_dummy.cpp - Ethernet device driver, dummy implementation |
3 |
* |
4 |
* Basilisk II (C) 1997-2008 Christian Bauer |
5 |
* |
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 |
#include "cpu_emulation.h" |
24 |
#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 |
void AO_get_ethernet_address(uint32 addr) |
55 |
{ |
56 |
} |
57 |
|
58 |
|
59 |
/* |
60 |
* Enable multicast address |
61 |
*/ |
62 |
|
63 |
void AO_enable_multicast(uint32 addr) |
64 |
{ |
65 |
} |
66 |
|
67 |
|
68 |
/* |
69 |
* Disable multicast address |
70 |
*/ |
71 |
|
72 |
void AO_disable_multicast(uint32 addr) |
73 |
{ |
74 |
} |
75 |
|
76 |
|
77 |
/* |
78 |
* Transmit one packet |
79 |
*/ |
80 |
|
81 |
void AO_transmit_packet(uint32 mp) |
82 |
{ |
83 |
} |
84 |
|
85 |
|
86 |
/* |
87 |
* Ethernet interrupt |
88 |
*/ |
89 |
|
90 |
void EtherIRQ(void) |
91 |
{ |
92 |
} |