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

21 lines
337 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 <stdlib.h>
int main(void)
{
2021-12-29 15:33:40 +08:00
printf("Hello RT-Thread!\n");
2017-09-19 12:14:52 +08:00
return 0;
}