startup.c 507 字节
Newer Older
1
/*
wannomore's avatar
wannomore 已提交
2
 * Copyright (c) 2006-2022, RT-Thread Development Team
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
5 6 7 8 9
 *
 * Change Logs:
 * Date           Author       Notes
 * 2006-08-31     Bernard      first implementation
 * 2018-09-02     xuzhuoyi     modify for TMS320F28379D version
wannomore's avatar
wannomore 已提交
10
 * 2022-08-21     yuqi         modify the entry function
11 12 13 14 15 16 17 18 19
 */

#include <stdint.h>
#include <rthw.h>
#include <rtthread.h>
#include "board.h"

int main(void)
{
wannomore's avatar
wannomore 已提交
20
    unsigned long x=10000;
21

wannomore's avatar
wannomore 已提交
22 23 24 25
    while(x)
    {
        x--;
    }
26 27 28
}

/*@}*/