From a35c4f350f7d7696c8d33e17c54c25f376f3c5a6 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 28 Jan 2018 11:59:44 +0100 Subject: [PATCH] The NE2000 is no longer incorrectly marked as 8-bit, should fix it. --- src/network/net_ne2000.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/network/net_ne2000.c b/src/network/net_ne2000.c index a2304c375..198a3f9dc 100644 --- a/src/network/net_ne2000.c +++ b/src/network/net_ne2000.c @@ -14,7 +14,7 @@ * * NOTE: The file will also implement an NE1000 for 8-bit ISA systems. * - * Version: @(#)net_ne2000.c 1.0.27 2018/01/26 + * Version: @(#)net_ne2000.c 1.0.28 2018/01/28 * * Authors: Fred N. van Kempen, * Peter Grehan, @@ -2394,8 +2394,8 @@ nic_init(device_t *info) rom = NULL; switch(dev->board) { case NE2K_NE1000: - case NE2K_NE2000: dev->is_8bit = 1; + case NE2K_NE2000: dev->maclocal[0] = 0x00; /* 00:00:D8 (Novell OID) */ dev->maclocal[1] = 0x00; dev->maclocal[2] = 0xD8;