78d6190238e78375428c896f121163d46dfe4a97
[reactos.git] / reactos / lib / ntdll / ldr / entry.S
1 #include <roscfg.h>
2
3 .extern ___true_LdrInitializeThunk@16
4
5 .globl _LdrInitializeThunk@16
6 _LdrInitializeThunk@16:
7 #if defined(_M_IX86)
8 nop /* breakin overwrites this with "int 3" */
9 jmp ___true_LdrInitializeThunk@16
10 #elif defined(_M_ALPHA)
11 nop /* breakin overwrites this with "call_pal bpt" */
12 br ___true_LdrInitializeThunk@16
13 #elif defined(_M_MIPS)
14 nop /* breakin overwrites this with "break" */
15 j ___true_LdrInitializeThunk@16
16 #else
17 #error Unsupported architecture.
18 #endif