!69 解决bsp/tm4c129在gcc开发环境下无法startup问题

Merge pull request !69 from 上大人孔乙己/fix/tm4c129-startup
This commit is contained in:
RT-Thread 2020-11-26 13:44:45 +08:00 committed by Gitee
commit 631220eb22
1 changed files with 3 additions and 3 deletions

View File

@ -217,8 +217,7 @@ extern uint32_t _ebss;
// application.
//
//*****************************************************************************
void
ResetISR(void)
void ResetISR(void)
{
uint32_t *pui32Src, *pui32Dest;
@ -261,7 +260,8 @@ ResetISR(void)
//
// Call the application's entry point.
//
main();
extern int entry(void);
entry();
}
//*****************************************************************************