1 |
|
/* |
2 |
|
* ether_dummy.cpp - Ethernet device driver, dummy implementation |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-2000 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2001 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 |
37 |
|
* Initialization |
38 |
|
*/ |
39 |
|
|
40 |
< |
void EtherInit(void) |
40 |
> |
bool ether_init(void) |
41 |
|
{ |
42 |
|
} |
43 |
|
|
46 |
|
* Deinitialization |
47 |
|
*/ |
48 |
|
|
49 |
< |
void EtherExit(void) |
49 |
> |
void ether_exit(void) |
50 |
|
{ |
51 |
|
} |
52 |
|
|
55 |
|
* Reset |
56 |
|
*/ |
57 |
|
|
58 |
< |
void EtherReset(void) |
58 |
> |
void ether_reset(void) |
59 |
|
{ |
60 |
|
} |
61 |
|
|