Creating a File for the Boot Loader StartUp Function
In the process of developing your boot loader, you must create a file called Startup.s. Startup.s will contain your implementation of the boot loader StartUp function.
To create a file for the StartUp function
Navigate to %_WINCEROOT%\Platform\MyPlatform\Eboot.
Create a file called Startup.s.
Because of its low-level nature, the new Startup.s file must contain code written in assembly language. The following code example is specific to the ARM hardware platform. Your code may vary. For more information about the hardware platform used for this example, see Boot Loader Design.
OPT 2 ; Disable listing INCLUDE kxarm.h ; This defines the WinCE/ARM Calling Sequence Specification OPT 1 ; Reenable listing OPT 128 ; Disable listing of macro expansions STARTUPTEXT LEAF_ENTRY StartUp nop ; *** This routine will be filled in later *** END
See Also
ARM Guide | ARM Assembler | How to Develop a Boot Loader
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.