tangled
alpha
login
or
join now
huwcampbell.com
/
reactos
0
fork
atom
Reactos
0
fork
atom
overview
issues
pulls
pipelines
[MINIHAL] Remove unneeded files from compilation.
Hermès Bélusca-Maïto
2 years ago
d03fc32e
f203ad5c
-13
3 changed files
expand all
collapse all
unified
split
hal
halx86
generic
bios.c
display.c
minihal
CMakeLists.txt
-6
hal/halx86/generic/bios.c
···
202
202
203
203
/* V86 TRAP HANDLERS **********************************************************/
204
204
205
205
-
#ifndef _MINIHAL_
206
205
DECLSPEC_NORETURN
207
206
VOID
208
207
FASTCALL
···
285
284
/* Exit to V86 mode */
286
285
HalpExitToV86((PKTRAP_FRAME)&V86TrapFrame);
287
286
}
288
288
-
#endif
289
287
290
288
/* FUNCTIONS ******************************************************************/
291
289
···
443
441
while (i--) HalpSavedIoMap[HalpSavedIoMapData[i][0]] = HalpSavedIoMapData[i][1];
444
442
}
445
443
446
446
-
#ifndef _MINIHAL_
447
444
VOID
448
445
NTAPI
449
446
HalpMapRealModeMemory(VOID)
···
531
528
//
532
529
KeRegisterInterruptHandler(6, HalpTrap06);
533
530
}
534
534
-
#endif
535
531
536
532
VOID
537
533
NTAPI
···
641
637
HalpFlushTLB();
642
638
}
643
639
644
644
-
#ifndef _MINIHAL_
645
640
BOOLEAN
646
641
NTAPI
647
642
HalpBiosDisplayReset(VOID)
···
716
711
return TRUE;
717
712
#endif
718
713
}
719
719
-
#endif
720
714
721
715
/* EOF */
-2
hal/halx86/generic/display.c
···
31
31
NTAPI
32
32
HalDisplayString(IN PCH String)
33
33
{
34
34
-
#ifndef _MINIHAL_
35
34
/* Call the Inbv driver */
36
35
InbvDisplayString(String);
37
37
-
#endif
38
36
}
39
37
40
38
/*
-5
hal/halx86/minihal/CMakeLists.txt
···
6
6
../legacy/bus/isabus.c
7
7
../legacy/bus/pcibus.c
8
8
../legacy/bussupp.c
9
9
-
../generic/bios.c
10
9
../generic/dma.c
11
11
-
../generic/display.c
12
10
../generic/drive.c
13
11
../generic/misc.c
14
12
../generic/nmi.c
···
25
23
list(APPEND MINI_HAL_SOURCE
26
24
../generic/beep.c
27
25
../generic/cmos.c
28
28
-
../generic/profil.c
29
26
../xbox/clock.c
30
27
../xbox/reboot.c)
31
28
elseif(SARCH STREQUAL "pc98")
···
33
30
../pc98/beep.c
34
31
../pc98/clock.c
35
32
../pc98/cmos.c
36
36
-
../pc98/profil.c
37
33
../pc98/reboot.c)
38
34
else()
39
35
list(APPEND MINI_HAL_SOURCE
40
36
../generic/beep.c
41
37
../generic/clock.c
42
38
../generic/cmos.c
43
43
-
../generic/profil.c
44
39
../generic/reboot.c)
45
40
endif()
46
41