mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-22 15:07:43 +08:00
42fc2fa37c
Supported esp32 and esp32s2 boards: https://github.com/espressif/esp-toolchain-docs/blob/main/gcc/build-and-run-native-app.md
21 lines
332 B
ArmAsm
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 */
|