4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-23 02:17:21 +08:00

20 lines
318 B
C
Raw Normal View History

/*
2023-01-08 15:26:31 +08:00
* Copyright (c) 2006-2023, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2023/03/25 flyingcys first version
*/
#include <rtthread.h>
#include <stdio.h>
int main(void)
{
rt_kprintf("Hello, RISC-V!\n");
return 0;
2023-01-08 15:26:31 +08:00
}