rt-thread/bsp/bouffalo_lab/bl60x/applications/main.c

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
}