1998-10-17 13:55:51 +02:00
|
|
|
/*
|
|
|
|
* DOS interrupt 29h handler
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* Copyright 1998 Joseph Pranevich
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1998-10-17 13:55:51 +02:00
|
|
|
*/
|
|
|
|
|
1998-12-03 17:29:56 +01:00
|
|
|
#include "config.h"
|
2001-07-18 23:04:23 +02:00
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2002-12-10 23:56:43 +01:00
|
|
|
#include "windef.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "winbase.h"
|
2001-07-18 23:04:23 +02:00
|
|
|
|
|
|
|
#include "miscemu.h"
|
2002-04-03 04:34:45 +02:00
|
|
|
#include "dosexe.h"
|
1998-10-17 13:55:51 +02:00
|
|
|
|
|
|
|
/**********************************************************************
|
2002-11-06 20:57:49 +01:00
|
|
|
* DOSVM_Int29Handler (WINEDOS16.141)
|
1998-10-17 13:55:51 +02:00
|
|
|
*
|
|
|
|
* Handler for int 29h (fast console output)
|
|
|
|
*/
|
2001-12-04 20:54:44 +01:00
|
|
|
void WINAPI DOSVM_Int29Handler( CONTEXT86 *context )
|
1998-10-17 13:55:51 +02:00
|
|
|
{
|
|
|
|
/* Yes, it seems that this is really all this interrupt does. */
|
2002-04-03 04:34:45 +02:00
|
|
|
DOSVM_PutChar(AL_reg(context));
|
1998-10-17 13:55:51 +02:00
|
|
|
}
|