mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
617955db88
context. Added #ifdef __i386__ around accesses to 386 registers in the generic CONTEXT structure.
20 lines
434 B
C
20 lines
434 B
C
/*
|
|
* DOS interrupt 29h handler
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "windef.h"
|
|
#include "winnt.h"
|
|
#include "console.h"
|
|
|
|
/**********************************************************************
|
|
* INT_Int29Handler
|
|
*
|
|
* Handler for int 29h (fast console output)
|
|
*/
|
|
void WINAPI INT_Int29Handler( CONTEXT86 *context )
|
|
{
|
|
/* Yes, it seems that this is really all this interrupt does. */
|
|
CONSOLE_Write(AL_reg(context), 0, 0, 0);
|
|
}
|
|
|