blob: 8f3d6ad948501dcdf72374b1d336ad8eb31556e8 [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 <stdlib.h>
6#include "msdos.h"
Alexandre Julliard234bc241994-12-10 13:02:28 +00007#include "miscemu.h"
Alexandre Julliardaca05781994-10-17 18:12:41 +00008#include "debug.h"
9
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000010/**********************************************************************
11 * INT_Int2aHandler
12 *
13 * Handler for int 2ah (network).
14 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +000015void WINAPI INT_Int2aHandler( CONTEXT *context )
Alexandre Julliard7e50df31994-08-06 11:22:41 +000016{
Alexandre Julliardca22b331996-07-12 19:02:39 +000017 switch(AH_reg(context))
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000018 {
19 case 0x00: /* NETWORK INSTALLATION CHECK */
20 break;
Alexandre Julliard7e50df31994-08-06 11:22:41 +000021
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000022 default:
Alexandre Julliardca22b331996-07-12 19:02:39 +000023 INT_BARF( context, 0x2a );
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000024 }
Alexandre Julliard7e50df31994-08-06 11:22:41 +000025}