genode/repos/base-hw/src/core/include/spec/riscv/board.h

26 lines
399 B
C++

/*
* \brief Board spcecification
* \author Sebastian Sumpf
* \date 2015-06-02
*/
/*
* Copyright (C) 2015-2016 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _BOARD_H_
#define _BOARD_H_
namespace Genode
{
struct Board
{
void init() { }
};
}
#endif /* _BOARD_H_ */