genode/repos/base-sel4/src/test/sel4/main.cc

24 lines
437 B
C++
Raw Normal View History

2014-10-15 14:48:45 +02:00
/*
* \brief Test for exercising the seL4 kernel interface
* \author Norman Feske
* \date 2014-10-14
*/
/*
* Copyright (C) 2014 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.
*/
2014-10-15 18:11:17 +02:00
/* Genode includes */
2014-10-15 18:17:08 +02:00
#include <base/printf.h>
2014-10-15 14:48:45 +02:00
int main()
{
2014-10-15 18:17:08 +02:00
PDBG("a message printed via Genode's PDBG");
2014-10-15 18:11:17 +02:00
2014-10-15 14:48:45 +02:00
*(int *)0x1122 = 0;
return 0;
}