mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
24 lines
468 B
ArmAsm
24 lines
468 B
ArmAsm
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: dll/win32/kernel32/client/arm/fiber.S
|
|
* PURPOSE: Fiber context switch code for the amd64 architecture
|
|
* PROGRAMMER:
|
|
*/
|
|
|
|
#include <ksarm.h>
|
|
|
|
TEXTAREA
|
|
|
|
LEAF_ENTRY BaseFiberStartup
|
|
__assertfail
|
|
bx lr
|
|
LEAF_END BaseFiberStartup
|
|
|
|
LEAF_ENTRY SwitchToFiber
|
|
__assertfail
|
|
bx lr
|
|
LEAF_END SwitchToFiber
|
|
|
|
END
|
|
/* EOF */
|