blob: 02e37d89bc8e7692da10915b9a90178b740b5c83 [file] [log] [blame]
Alexandre Julliard9ea19e51997-01-01 17:29:55 +00001/*
2 * DOS interrupt 2ah handler
3 */
4
Alexandre Julliard7e50df31994-08-06 11:22:41 +00005#include <stdio.h>
6#include <stdlib.h>
7#include "msdos.h"
Alexandre Julliard234bc241994-12-10 13:02:28 +00008#include "miscemu.h"
Alexandre Julliardaca05781994-10-17 18:12:41 +00009#include "stddebug.h"
10/* #define DEBUG_INT */
Alexandre Julliardaca05781994-10-17 18:12:41 +000011#include "debug.h"
12
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000013/**********************************************************************
14 * INT_Int2aHandler
15 *
16 * Handler for int 2ah (network).
17 */
Alexandre Julliard9ea19e51997-01-01 17:29:55 +000018void INT_Int2aHandler( CONTEXT *context )
Alexandre Julliard7e50df31994-08-06 11:22:41 +000019{
Alexandre Julliardca22b331996-07-12 19:02:39 +000020 switch(AH_reg(context))
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000021 {
22 case 0x00: /* NETWORK INSTALLATION CHECK */
23 break;
Alexandre Julliard7e50df31994-08-06 11:22:41 +000024
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000025 default:
Alexandre Julliardca22b331996-07-12 19:02:39 +000026 INT_BARF( context, 0x2a );
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000027 }
Alexandre Julliard7e50df31994-08-06 11:22:41 +000028}