[NTVDM]
[reactos.git] / reactos / subsystems / ntvdm / bios / bios32 / vidbios32.c
1 /*
2 * COPYRIGHT: GPL - See COPYING in the top level directory
3 * PROJECT: ReactOS Virtual DOS Machine
4 * FILE: vidbios32.c
5 * PURPOSE: VDM Video 32-bit BIOS
6 * PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
7 *
8 * NOTE: All of the real code is in bios/vidbios.c
9 */
10
11 /* INCLUDES *******************************************************************/
12
13 #define NDEBUG
14
15 #include "emulator.h"
16 #include "int32.h"
17
18 #include "vidbios32.h"
19 #include "../vidbios.h"
20 #include "bios32p.h"
21
22 /* PUBLIC FUNCTIONS ***********************************************************/
23
24 BOOLEAN VidBios32Initialize(VOID)
25 {
26 /* Initialize the common Video BIOS Support Library */
27 if (!VidBiosInitialize()) return FALSE;
28
29 /* Register the BIOS 32-bit Interrupts */
30 RegisterBiosInt32(BIOS_VIDEO_INTERRUPT, VidBiosVideoService);
31
32 return TRUE;
33 }
34
35 VOID VidBios32Cleanup(VOID)
36 {
37 /* Cleanup the common Video BIOS Support Library */
38 VidBiosCleanup();
39 }
40
41 /* EOF */