19 lines
360 B
C
19 lines
360 B
C
/*
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2011-02-14 aozima first implementation for Nios II.
|
|
*/
|
|
|
|
#ifndef BOARD_H_INCLUDED
|
|
#define BOARD_H_INCLUDED
|
|
|
|
#include <rthw.h>
|
|
|
|
extern void rt_hw_board_init(void);
|
|
|
|
#endif // BOARD_H_INCLUDED
|