blob: f2794b70bbcda357d93e6a409568fa5f194cc622 [file] [log] [blame]
/*
* 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 );
}