genode/base-hw/src/core/pbxa9/timer.h
Martin Stein 7f2f2d9120 base-hw: ease core build
Merge core only libs into the target make-files.

Use base-hw specific Board drivers that inherit
from generic Board_base.

Use Page_flags::access_t instead of additional
page_flags_t.

Fix #570
2013-01-08 11:36:52 +01:00

30 lines
491 B
C++

/*
* \brief Timer for kernel
* \author Martin Stein
* \date 2012-04-23
*/
/*
* Copyright (C) 2012 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 _PBXA9__TIMER_H_
#define _PBXA9__TIMER_H_
/* core includes */
#include <timer/cortex_a9.h>
namespace Kernel
{
/**
* Kernel timer
*/
class Timer : public Cortex_a9::Timer { };
}
#endif /* _PBXA9__TIMER_H_ */