blob: 64215e948781f4647e000cfad26816b13d6c6649 [file] [log] [blame]
Alexandre Julliard9ea19e51997-01-01 17:29:55 +00001/*
2 * DOS interrupt 4bh handler
3 */
4
Marcus Meissner317af321999-02-17 13:51:06 +00005#include <stdio.h>
Alexandre Julliard9ea19e51997-01-01 17:29:55 +00006#include "miscemu.h"
Alexandre Julliard383da682000-02-10 22:15:21 +00007#include "debugtools.h"
8
9DEFAULT_DEBUG_CHANNEL(int);
Alexandre Julliard9ea19e51997-01-01 17:29:55 +000010
11/***********************************************************************
12 * INT_Int4bHandler
13 *
14 */
Alexandre Julliard617955d1999-06-26 18:40:24 +000015void WINAPI INT_Int4bHandler( CONTEXT86 *context )
Alexandre Julliard9ea19e51997-01-01 17:29:55 +000016{
17 switch(AH_reg(context))
18 {
19 case 0x81: /* Virtual DMA Spec (IBM SCSI interface) */
20 if(AL_reg(context) != 0x02) /* if not install check */
21 {
22 SET_CFLAG(context);
23 AL_reg(context) = 0x0f; /* function is not implemented */
24 }
25 break;
26 default:
27 INT_BARF(context, 0x4b);
28 }
29}