rt-thread-official/bsp/qemu-vexpress-a9/applications/main.c

21 lines
343 B
C
Raw Normal View History

/*
* Copyright (c) 2006-2020, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2020/12/31 Bernard Add license info
*/
2017-09-19 12:14:52 +08:00
#include <stdint.h>
#include <stdio.h>
#include <rtthread.h>
2017-09-19 12:14:52 +08:00
int main(void)
{
rt_kprintf("Hello RT-Thread!\n");
2017-09-19 12:14:52 +08:00
return 0;
}