Make asm files compilable with ML

svn path=/branches/cmake-bringup/; revision=49589
This commit is contained in:
Timo Kreuzer 2010-11-15 01:03:14 +00:00
parent d3652562e5
commit 07652e2631
10 changed files with 22 additions and 16 deletions

View file

@ -100,4 +100,4 @@ endif(ARCH MATCHES i386)
add_library(rtl ${CMAKE_CURRENT_BINARY_DIR}/rtl_rtl.h.gch ${SOURCE}) add_library(rtl ${CMAKE_CURRENT_BINARY_DIR}/rtl_rtl.h.gch ${SOURCE})
add_pch(rtl ${CMAKE_CURRENT_SOURCE_DIR}/rtl.h ${SOURCE}) add_pch(rtl ${CMAKE_CURRENT_SOURCE_DIR}/rtl.h ${SOURCE})
add_dependencies(rtl psdk) add_dependencies(rtl psdk ks386)

View file

@ -6,7 +6,7 @@
* PROGRAMER: Timo Kreuzer (timo.kreuzer@reactos.org) * PROGRAMER: Timo Kreuzer (timo.kreuzer@reactos.org)
*/ */
#include <reactos/asm.h> #include <asm.inc>
/* GLOBALS ****************************************************************/ /* GLOBALS ****************************************************************/

View file

@ -8,8 +8,8 @@
/* INCLUDES ******************************************************************/ /* INCLUDES ******************************************************************/
#include <reactos/asm.h> #include <asm.inc>
#include <ndk/amd64/asm.h> #include <ksamd64.inc>
/* FUNCTIONS *****************************************************************/ /* FUNCTIONS *****************************************************************/

View file

@ -8,8 +8,7 @@
/* INCLUDES ******************************************************************/ /* INCLUDES ******************************************************************/
#include <reactos/asm.h> #include <asm.inc>
#include <ndk/amd64/asm.h>
/* FUNCTIONS *****************************************************************/ /* FUNCTIONS *****************************************************************/

View file

@ -6,8 +6,8 @@
* PROGRAMMERS: Timo Kreuzer * PROGRAMMERS: Timo Kreuzer
*/ */
#include <reactos/asm.h> #include <asm.inc>
#include <ndk/amd64/asm.h> #include <ksamd64.inc>
#define SLIST8A_DEPTH_MASK HEX(000000000000FFFF) #define SLIST8A_DEPTH_MASK HEX(000000000000FFFF)
#define SLIST8A_DEPTH_INC HEX(0000000000000001) #define SLIST8A_DEPTH_INC HEX(0000000000000001)

View file

@ -6,7 +6,7 @@
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
*/ */
#include <reactos/asm.h> #include <asm.inc>
/* GLOBALS ****************************************************************/ /* GLOBALS ****************************************************************/

View file

@ -9,8 +9,8 @@
/* INCLUDES ******************************************************************/ /* INCLUDES ******************************************************************/
#include <reactos/asm.h> #include <asm.inc>
#include <ndk/asm.h> #include <ks386.inc>
EXTERN _RtlpCheckForActiveDebugger@0:PROC EXTERN _RtlpCheckForActiveDebugger@0:PROC
EXTERN _RtlDispatchException@8:PROC EXTERN _RtlDispatchException@8:PROC

View file

@ -6,7 +6,7 @@
* PROGRAMMERS: Timo Kreuzer * PROGRAMMERS: Timo Kreuzer
*/ */
#include <reactos/asm.h> #include <asm.inc>
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
.code .code

View file

@ -1,6 +1,13 @@
/*
* COPYRIGHT: GNU GPL - See COPYING in the top level directory
* PROJECT: ReactOS Run-Time Library
* PURPOSE:
* FILE: lib/rtl/i386/res_asm.S
* PROGRAMER:
*/
#include <reactos/asm.h> #include <asm.inc>
#include <ndk/asm.h> #include <ks386.inc>
EXTERN _LdrpAccessResource@16:PROC EXTERN _LdrpAccessResource@16:PROC

View file

@ -1,12 +1,12 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: GNU GPL - See COPYING in the top level directory
* PROJECT: ReactOS Run-Time Library * PROJECT: ReactOS Run-Time Library
* PURPOSE: Memory functions * PURPOSE: Memory functions
* FILE: lib/rtl/i386/rtlswap.S * FILE: lib/rtl/i386/rtlswap.S
* PROGRAMER: Alex Ionescu (alex.ionescu@reactos.org) * PROGRAMER: Alex Ionescu (alex.ionescu@reactos.org)
*/ */
#include <reactos/asm.h> #include <asm.inc>
/* GLOBALS *******************************************************************/ /* GLOBALS *******************************************************************/