2014-01-16 07:39:33 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de>
|
|
|
|
*
|
2015-02-12 16:08:04 +01:00
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
2014-01-16 07:39:33 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-02-12 16:05:41 +01:00
|
|
|
* @ingroup boards_qemu-i386
|
2014-01-16 07:39:33 +01:00
|
|
|
* @{
|
2015-02-12 16:05:41 +01:00
|
|
|
*
|
2014-01-16 07:39:33 +01:00
|
|
|
* @file
|
2015-02-12 16:05:41 +01:00
|
|
|
* @brief CPU-specific defines for qemu-i386
|
|
|
|
*
|
|
|
|
* @author René Kijewski <rene.kijewski@fu-berlin.de>
|
2014-01-16 07:39:33 +01:00
|
|
|
*/
|
|
|
|
|
2015-06-03 12:20:20 +02:00
|
|
|
#ifndef QEMU_I386_CPU_CONF_H_
|
|
|
|
#define QEMU_I386_CPU_CONF_H_
|
2014-01-16 07:39:33 +01:00
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-01-16 07:39:33 +01:00
|
|
|
/* FIXME: This file is just a filler. The numbers are entirely random ... */
|
|
|
|
|
2015-04-28 20:02:05 +02:00
|
|
|
#define THREAD_STACKSIZE_DEFAULT (8192)
|
|
|
|
#define THREAD_STACKSIZE_IDLE (8192)
|
|
|
|
#define THREAD_EXTRA_STACKSIZE_PRINTF (8192)
|
|
|
|
#define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (8192)
|
|
|
|
#define THREAD_STACKSIZE_MINIMUM (8192)
|
2014-01-16 07:39:33 +01:00
|
|
|
|
|
|
|
#define F_CPU (1000000) /* This value is unused in x86 */
|
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-16 07:39:33 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/** @} */
|