Fixed ToUnicode TRACE message.
[wine.git] / msdos / int5c.c
blobf3e6cc04b04335af53407d80ddd2b9ff75d0fe44
1 /*
2 * NetBIOS interrupt handling
4 * Copyright 1995 Alexandre Julliard, Alex Korobka
5 */
7 #include "ldt.h"
8 #include "miscemu.h"
9 #include "debugtools.h"
11 DEFAULT_DEBUG_CHANNEL(int)
14 /***********************************************************************
15 * NetBIOSCall (KERNEL.103)
17 * Also handler for interrupt 5c.
19 void WINAPI NetBIOSCall16( CONTEXT86 *context )
21 BYTE* ptr;
22 ptr = (BYTE*) PTR_SEG_OFF_TO_LIN(context->SegEs,BX_reg(context));
23 FIXME("(%p): command code %02x (ignored)\n",context, *ptr);
24 AL_reg(context) = *(ptr+0x01) = 0xFB; /* NetBIOS emulator not found */