rt-thread-official/bsp/qemu-riscv-virt64/applications/main.c

22 lines
351 B
C
Raw Normal View History

/*
2021-05-21 17:03:30 +08:00
* Copyright (c) 2006-2021, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
2021-05-21 17:03:30 +08:00
* 2021-05-20 bigmagic first version
*/
#include <rtthread.h>
#include <rthw.h>
#include <stdio.h>
#include <string.h>
int main(void)
{
2021-05-21 17:03:30 +08:00
printf("Hello RISC-V!\n");
return 0;
}