summaryrefslogtreecommitdiffstats
path: root/bsps/m32c/m32cbsp/include/bsp.h
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/m32c/m32cbsp/include/bsp.h')
-rw-r--r--bsps/m32c/m32cbsp/include/bsp.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/bsps/m32c/m32cbsp/include/bsp.h b/bsps/m32c/m32cbsp/include/bsp.h
new file mode 100644
index 0000000000..b7c6891e09
--- /dev/null
+++ b/bsps/m32c/m32cbsp/include/bsp.h
@@ -0,0 +1,49 @@
+/**
+ * @file
+ *
+ * @ingroup m32c_bsp
+ *
+ * @brief m32c simulator definitions in gdb
+ */
+
+/* bsp.h
+ *
+ * This include file contains some definitions specific to the
+ * h8 simulator in gdb.
+ *
+ * COPYRIGHT (c) 1989-1999.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#ifndef LIBBSP_M32C_M32CBSP_BSP_H
+#define LIBBSP_M32C_M32CBSP_BSP_H
+
+#include <bspopts.h>
+#include <bsp/default-initial-extension.h>
+
+#include <rtems.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * @defgroup m32c_bsp Clock Tick Support
+ *
+ * @ingroup m32c_m32cbsp
+ *
+ * @brief Clock Tick Support Package
+ */
+
+void *clock_driver_sim_idle_body(uintptr_t);
+#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif