2 * NetBIOS interrupt handling
4 * Copyright 1995 Alexandre Julliard, Alex Korobka
8 #include "debugtools.h"
10 DEFAULT_DEBUG_CHANNEL(int);
13 /***********************************************************************
14 * NetBIOSCall (KERNEL.103)
16 * Also handler for interrupt 5c.
18 void WINAPI NetBIOSCall16( CONTEXT86 *context )
21 ptr = MapSL( MAKESEGPTR(context->SegEs,BX_reg(context)) );
22 FIXME("(%p): command code %02x (ignored)\n",context, *ptr);
23 AL_reg(context) = *(ptr+0x01) = 0xFB; /* NetBIOS emulator not found */