4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-03-03 20:35:34 +08:00

fix:fix startip_gcc.c entry point

This commit is contained in:
wirano 2024-01-18 21:51:06 +08:00 committed by Meco Man
parent edd7a5d176
commit 8d32b057c6

View File

@ -291,7 +291,8 @@ ResetISR(void)
//
// Call the application's entry point.
//
main();
extern int entry(void);
entry();
}
//*****************************************************************************