1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00
RIOT/cpu/msp430/include/architecture_arch.h
2025-09-22 10:47:18 +02:00

33 lines
533 B
C

/*
* SPDX-FileCopyrightText: 2020 Otto-von-Guericke-Universität Magdeburg
* SPDX-License-Identifier: LGPL-2.1-only
*/
#pragma once
/**
* @ingroup cpu_msp430
* @{
*
* @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 (16U)
#endif /* DOXYGEN */
#ifdef __cplusplus
}
#endif
/** @} */