mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:32:59 +00:00
[RTL]
Make asm files compilable with ML svn path=/branches/cmake-bringup/; revision=49589
This commit is contained in:
parent
d3652562e5
commit
07652e2631
10 changed files with 22 additions and 16 deletions
|
@ -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)
|
||||||
|
|
|
@ -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 ****************************************************************/
|
||||||
|
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
|
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include <reactos/asm.h>
|
#include <asm.inc>
|
||||||
#include <ndk/amd64/asm.h>
|
#include <ksamd64.inc>
|
||||||
|
|
||||||
/* FUNCTIONS *****************************************************************/
|
/* FUNCTIONS *****************************************************************/
|
||||||
|
|
||||||
|
|
|
@ -8,8 +8,7 @@
|
||||||
|
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include <reactos/asm.h>
|
#include <asm.inc>
|
||||||
#include <ndk/amd64/asm.h>
|
|
||||||
|
|
||||||
/* FUNCTIONS *****************************************************************/
|
/* FUNCTIONS *****************************************************************/
|
||||||
|
|
||||||
|
|
|
@ -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)
|
||||||
|
|
|
@ -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 ****************************************************************/
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
* PROGRAMMERS: Timo Kreuzer
|
* PROGRAMMERS: Timo Kreuzer
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <reactos/asm.h>
|
#include <asm.inc>
|
||||||
|
|
||||||
/* FUNCTIONS ****************************************************************/
|
/* FUNCTIONS ****************************************************************/
|
||||||
.code
|
.code
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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 *******************************************************************/
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue