Alexandre Julliard | 9ea19e5 | 1997-01-01 17:29:55 +0000 | [diff] [blame] | 1 | /* |
| 2 | * DOS interrupt 4bh handler |
| 3 | */ |
| 4 | |
Marcus Meissner | 317af32 | 1999-02-17 13:51:06 +0000 | [diff] [blame] | 5 | #include <stdio.h> |
Alexandre Julliard | 9ea19e5 | 1997-01-01 17:29:55 +0000 | [diff] [blame] | 6 | #include "miscemu.h" |
Alexandre Julliard | 383da68 | 2000-02-10 22:15:21 +0000 | [diff] [blame] | 7 | #include "debugtools.h" |
| 8 | |
| 9 | DEFAULT_DEBUG_CHANNEL(int); |
Alexandre Julliard | 9ea19e5 | 1997-01-01 17:29:55 +0000 | [diff] [blame] | 10 | |
| 11 | /*********************************************************************** |
| 12 | * INT_Int4bHandler |
| 13 | * |
| 14 | */ |
Alexandre Julliard | 617955d | 1999-06-26 18:40:24 +0000 | [diff] [blame] | 15 | void WINAPI INT_Int4bHandler( CONTEXT86 *context ) |
Alexandre Julliard | 9ea19e5 | 1997-01-01 17:29:55 +0000 | [diff] [blame] | 16 | { |
| 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 | } |