architecture_arch.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2020 Otto-von-Guericke-Universität Magdeburg
3  * 2021 Gerson Fernando Budke
4  *
5  * This file is subject to the terms and conditions of the GNU Lesser
6  * General Public License v2.1. See the file LICENSE in the top level
7  * directory for more details.
8  */
9 
10 #pragma once
11 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
28 /* Doc is provided centrally in platform.h, hide this from Doxygen */
29 #ifndef DOXYGEN
30 #define ARCHITECTURE_WORD_BITS (8U)
31 
32 #define ARCHITECTURE_LARGE_TXT_PTR 1
33 typedef uint32_t uinttxtptr_t;
34 #define PRIxTXTPTR PRIx32
35 #endif /* DOXYGEN */
36 
37 #ifdef __cplusplus
38 }
39 #endif
40 
uintptr_t uinttxtptr_t
Pointer type to point anywhere in the .text section.
Definition: architecture.h:135