2 * BIOS interrupt 15h handler
10 /**********************************************************************
13 * Handler for int 15h (old cassette interrupt).
15 void WINAPI INT_Int15Handler( CONTEXT *context )
17 switch(AH_reg(context))
19 case 0x88: /* get size of memory above 1 M */
20 AX_reg(context) = 64; /* FIXME: are 64K ok? */
25 INT_BARF( context, 0x15 );