Author: ros-arm-bringup Date: Sun Jul 27 21:18:43 2008 New Revision: 34887
URL: http://svn.reactos.org/svn/reactos?rev=34887&view=rev Log: - Fix FreeLDR for ARM build after some header changes that happen in NTOS.
Modified: trunk/reactos/boot/freeldr/freeldr/arch/arm/loader.c
Modified: trunk/reactos/boot/freeldr/freeldr/arch/arm/loader.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/a... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/arch/arm/loader.c [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/freeldr/arch/arm/loader.c [iso-8859-1] Sun Jul 27 21:18:43 2008 @@ -81,20 +81,6 @@ // Where to map the serial port // #define UART_VIRTUAL 0xE0000000 - -#define PTE_BASE 0xC0000000 -#define PDE_BASE 0xC1000000 -#define HYPER_SPACE 0xC1100000 - -// -// Take 0x80812345 and extract: -// PTE_BASE[0x808][0x12] -// -#define MiAddressToPte(x) \ - (PTE_BASE + (((x) >> 20) << 12) + ((((x) >> 12) & 0xFF) << 2)) - -#define MiAddressToPde(x) \ - (PDE_BASE + (((x) >> 20) << 2))
/* FUNCTIONS ******************************************************************/