1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-31 17:31:18 +01:00
2025-09-26 20:06:29 +02:00

25 lines
363 B
C

/*
* SPDX-FileCopyrightText: 2017, 2019 Ken Rabold, JP Bonn
* SPDX-License-Identifier: LGPL-2.1-only
*/
/**
* @ingroup cpu_riscv_common
* @{
*
* @file cpu.c
* @brief Implementation of the CPU panic for RISC-V
*
* @author Ken Rabold
* @}
*/
#include "panic.h"
void panic_arch(void)
{
#ifdef DEVELHELP
while (1) {}
#endif
}