/* * \brief Console backend using the Fiasco kernel debugger * \author Norman Feske * \date 2006-04-08 */ /* * Copyright (C) 2006-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. */ /* Fiasco includes */ namespace Fiasco { #include } /* Genode includes */ #include namespace Genode { class Core_console : public Console { protected: void _out_char(char c) { Fiasco::outchar(c); } }; }