mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 06:09:58 +00:00
085fe5e31a
- As already done for interrupts and I/O ports, add a registering system for BOPs. - INT32: Move ControlBop to the 32-bit interrupts module where it is used only. - DOS: Add (un)documented BOP_DOS (0x50) and BOP_CMD(0x54) used respectively by NTIO.SYS/NTDOS.SYS and by COMMAND.COM. It appears that they take an extra parameter (so, skip 1 byte-instruction after the BOP instruction as we do for the Control BOP 0xFF). See "Undocumented DOS 2nd edition" by Schulman et al., page 267. svn path=/branches/ntvdm/; revision=61278
31 lines
942 B
C
31 lines
942 B
C
/*
|
|
* COPYRIGHT: GPL - See COPYING in the top level directory
|
|
* PROJECT: ReactOS Virtual DOS Machine
|
|
* FILE: int32.h
|
|
* PURPOSE: 32-bit Interrupt Handlers
|
|
* PROGRAMMERS: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
|
|
* Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
|
*/
|
|
|
|
#ifndef _INT32_H_
|
|
#define _INT32_H_
|
|
|
|
/* DEFINES ********************************************************************/
|
|
|
|
/* 32-bit Interrupt Identifiers */
|
|
#define EMULATOR_MAX_INT32_NUM 0xFF + 1
|
|
|
|
#define INT_HANDLER_OFFSET 0x1000
|
|
#define COMMON_STUB_OFFSET 0x2000
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
typedef VOID (WINAPI *EMULATOR_INT32_PROC)(LPWORD Stack);
|
|
|
|
VOID WINAPI Int32Dispatch(LPWORD Stack);
|
|
VOID WINAPI InitializeInt32(WORD BiosSegment);
|
|
VOID WINAPI RegisterInt32(BYTE IntNumber, EMULATOR_INT32_PROC IntHandler);
|
|
|
|
#endif // _INT32_H_
|
|
|
|
/* EOF */
|