/* * NetBIOS interrupt handling * * Copyright 1995 Alexandre Julliard */ #include "wine.h" #include "miscemu.h" #include "stddebug.h" /* #define DEBUG_INT */ #include "debug.h" #include "registers.h" /*********************************************************************** * NetBIOSCall (KERNEL.103) * * Also handler for interrupt 5c. */ void NetBIOSCall( struct sigcontext_struct context ) { INT_BARF( &context, 0x5c ); }