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

21 lines
343 B
C

/*
* 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
*/
#include <stdint.h>
#include <stdio.h>
#include <rtthread.h>
int main(void)
{
rt_kprintf("Hello RT-Thread!\n");
return 0;
}