[KERNEL32]
[reactos.git] / reactos / dll / win32 / kernel32 / client / arm / fiber.S
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: dll/win32/kernel32/client/arm/fiber.S
5 * PURPOSE: Fiber context switch code for the amd64 architecture
6 * PROGRAMMER:
7 */
8
9 #include <ksarm.h>
10
11 TEXTAREA
12
13 LEAF_ENTRY BaseFiberStartup
14 __assertfail
15 bx lr
16 LEAF_END BaseFiberStartup
17
18 LEAF_ENTRY SwitchToFiber
19 __assertfail
20 bx lr
21 LEAF_END SwitchToFiber
22
23 END
24 /* EOF */