aboutsummaryrefslogtreecommitdiff
path: root/lib/chibios-contrib/os/common/ports/RISCV-ECLIC/chcore.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chibios-contrib/os/common/ports/RISCV-ECLIC/chcore.c')
-rw-r--r--lib/chibios-contrib/os/common/ports/RISCV-ECLIC/chcore.c55
1 files changed, 55 insertions, 0 deletions
diff --git a/lib/chibios-contrib/os/common/ports/RISCV-ECLIC/chcore.c b/lib/chibios-contrib/os/common/ports/RISCV-ECLIC/chcore.c
new file mode 100644
index 000000000..ab75cccd7
--- /dev/null
+++ b/lib/chibios-contrib/os/common/ports/RISCV-ECLIC/chcore.c
@@ -0,0 +1,55 @@
1/*
2 ChibiOS - Copyright (C) 2021 Stefan Kerkmann.
3
4 This file is part of ChibiOS.
5
6 ChibiOS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 ChibiOS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
18*/
19
20/**
21 * @file chcore.c
22 * @brief Port related template code.
23 *
24 * @addtogroup port_core
25 * @details Non portable code templates.
26 * @{
27 */
28
29#include "ch.h"
30
31/*===========================================================================*/
32/* Module local definitions. */
33/*===========================================================================*/
34
35/*===========================================================================*/
36/* Module exported variables. */
37/*===========================================================================*/
38
39/*===========================================================================*/
40/* Module local types. */
41/*===========================================================================*/
42
43/*===========================================================================*/
44/* Module local variables. */
45/*===========================================================================*/
46
47/*===========================================================================*/
48/* Module local functions. */
49/*===========================================================================*/
50
51/*===========================================================================*/
52/* Module exported functions. */
53/*===========================================================================*/
54
55/** @} */