From 58e74f3ca0cfcad6d8312332bf043ce1e558a6ba Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Sun, 11 Jul 2004 07:54:56 +0000 Subject: [PATCH] Enable ethernet everywhere, several users got it to work. Hangs may be unrelated to ethernet code anyway and ethernet driver should be endian safe nowadays. --- SheepShaver/src/kpx_cpu/sheepshaver_glue.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/SheepShaver/src/kpx_cpu/sheepshaver_glue.cpp b/SheepShaver/src/kpx_cpu/sheepshaver_glue.cpp index 321bdd84..318464e7 100644 --- a/SheepShaver/src/kpx_cpu/sheepshaver_glue.cpp +++ b/SheepShaver/src/kpx_cpu/sheepshaver_glue.cpp @@ -1102,7 +1102,6 @@ void sheepshaver_cpu::execute_native_op(uint32 selector) gpr(3) = (int32)(int16)VideoDoDriverIO((void *)gpr(3), (void *)gpr(4), (void *)gpr(5), gpr(6), gpr(7)); break; -#ifdef WORDS_BIGENDIAN case NATIVE_ETHER_IRQ: EtherIRQ(); break; @@ -1124,12 +1123,6 @@ void sheepshaver_cpu::execute_native_op(uint32 selector) case NATIVE_ETHER_RSRV: gpr(3) = ether_rsrv((queue_t *)gpr(3)); break; -#else - case NATIVE_ETHER_INIT: - // FIXME: needs more complicated thunks - gpr(3) = false; - break; -#endif case NATIVE_SYNC_HOOK: gpr(3) = NQD_sync_hook(gpr(3)); break;