genode/repos/base-pistachio/src/include/base/internal/core_console.h

32 lines
552 B
C++

/*
* \brief Console backend for Pistachio
* \author Julian Stecklina
* \date 2008-08-20
*/
/*
* Copyright (C) 2008-2013 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.
*/
/* Pistachio includes */
namespace Pistachio {
#include <l4/kdebug.h>
}
/* Genode includes */
#include <base/console.h>
namespace Genode
{
class Core_console : public Console
{
protected:
void _out_char(char c) { Pistachio::L4_KDB_PrintChar(c); }
};
}