architecture_arch.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: 2020 Otto-von-Guericke-Universität Magdeburg
3  * SPDX-FileCopyrightText: 2021 Gerson Fernando Budke
4  * SPDX-License-Identifier: LGPL-2.1-only
5  */
6 
7 #pragma once
8 
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24 
25 /* Doc is provided centrally in platform.h, hide this from Doxygen */
26 #ifndef DOXYGEN
27 #define ARCHITECTURE_WORD_BITS (8U)
28 
29 #define ARCHITECTURE_LARGE_TXT_PTR 1
30 typedef uint32_t uinttxtptr_t;
31 #define PRIxTXTPTR PRIx32
32 #endif /* DOXYGEN */
33 
34 #ifdef __cplusplus
35 }
36 #endif
37 
uintptr_t uinttxtptr_t
Pointer type to point anywhere in the .text section.
Definition: architecture.h:135