Sync with trunk r63192.
[reactos.git] / subsystems / ntvdm / bios / bios32 / bios32.h
1 /*
2 * COPYRIGHT: GPL - See COPYING in the top level directory
3 * PROJECT: ReactOS Virtual DOS Machine
4 * FILE: bios32.h
5 * PURPOSE: VDM 32-bit BIOS
6 * PROGRAMMERS: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
7 */
8
9 #ifndef _BIOS32_H_
10 #define _BIOS32_H_
11
12 /* INCLUDES *******************************************************************/
13
14 #include "ntvdm.h"
15 // #include "../bios.h"
16
17 /* DEFINES ********************************************************************/
18
19 // #define BIOS_EQUIPMENT_INTERRUPT 0x11
20 // #define BIOS_MEMORY_SIZE 0x12
21 // #define BIOS_MISC_INTERRUPT 0x15
22 // #define BIOS_TIME_INTERRUPT 0x1A
23 // #define BIOS_SYS_TIMER_INTERRUPT 0x1C
24
25 /* FUNCTIONS ******************************************************************/
26
27 BOOLEAN Bios32Initialize(VOID);
28 VOID Bios32Cleanup(VOID);
29
30 #endif // _BIOS32_H_
31
32 /* EOF */