mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 08:43:28 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
27 lines
536 B
C
Executable file
27 lines
536 B
C
Executable file
/*
|
|
* PROJECT: ReactOS Boot Loader
|
|
* LICENSE: BSD - See COPYING.ARM in the top level directory
|
|
* FILE: boot/armllb/inc/precomp.h
|
|
* PURPOSE: Precompiled header for LLB
|
|
* PROGRAMMERS: ReactOS Portable Systems Group
|
|
*/
|
|
|
|
#include "ntdef.h"
|
|
#include "stdio.h"
|
|
#include "ioaccess.h"
|
|
#include "machtype.h"
|
|
#include "osloader.h"
|
|
#include "fw.h"
|
|
#include "hw.h"
|
|
#include "serial.h"
|
|
#include "video.h"
|
|
#include "keyboard.h"
|
|
#include "envir.h"
|
|
|
|
VOID
|
|
DbgPrint(
|
|
const char *fmt,
|
|
...
|
|
);
|
|
|
|
/* EOF */
|