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.
This commit is contained in:
gbeauche 2004-07-11 07:54:56 +00:00
parent 18a039b610
commit 58e74f3ca0

View File

@ -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;