mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-17 02:23:49 +01:00
34 lines
599 B
C
34 lines
599 B
C
/*
|
|
* SPDX-FileCopyrightText: 2020 Otto-von-Guericke-Universität Magdeburg
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @ingroup cpu_cortexm_common
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Architecture details
|
|
*
|
|
* @author Marian Buschsieweke <marian.buschsieweke@ovgu.de>
|
|
*
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Doc is provided centrally in architecture.h, hide this from Doxygen */
|
|
#ifndef DOXYGEN
|
|
#define ARCHITECTURE_WORD_BITS (32U)
|
|
#define ARCHITECTURE_BREAKPOINT(value) __BKPT(value)
|
|
#endif /* DOXYGEN */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|