4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-22 15:07:43 +08:00
2023-08-24 10:52:36 -04:00

21 lines
332 B
ArmAsm

/*
* Copyright (C) 2023 Espressif Systems (Shanghai) CO LTD
* SPDX-License-Identifier: BSD-2-Clause
*/
/* crt0.S
* Dummy startup file which calls main() function.
* It can be used for compilation tests only.
*/
.text
/*
* Simple jump to main().
*/
.global _start
_start:
movi a4, main
jx a4 /* jump to main */