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
1 changed files with 2 additions and 1 deletions

View File

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