summaryrefslogtreecommitdiffstats
path: root/include/types.h
blob: c8df646953dcebfc367f955ea6bf8a63f9bb38ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
////////////////////////////////////////////////////////////////////////////////
///
/// @file       types.h
///
/// @project
///
/// @brief      Type and macro definitions
///
////////////////////////////////////////////////////////////////////////////////
///
////////////////////////////////////////////////////////////////////////////////
///
/// @copyright Copyright (c) 2018-2020, Evan Lojewski
/// @cond
///
/// All rights reserved.
///
/// Redistribution and use in source and binary forms, with or without
/// modification, are permitted provided that the following conditions are met:
/// 1. Redistributions of source code must retain the above copyright notice,
/// this list of conditions and the following disclaimer.
/// 2. Redistributions in binary form must reproduce the above copyright notice,
/// this list of conditions and the following disclaimer in the documentation
/// and/or other materials provided with the distribution.
/// 3. Neither the name of the copyright holder nor the
/// names of its contributors may be used to endorse or promote products
/// derived from this software without specific prior written permission.
///
////////////////////////////////////////////////////////////////////////////////
///
/// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
/// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
/// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
/// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
/// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
/// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
/// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
/// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
/// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
/// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
/// POSSIBILITY OF SUCH DAMAGE.
/// @endcond
////////////////////////////////////////////////////////////////////////////////

#ifndef TYPES_H
#define TYPES_H

#ifdef CXX_SIMULATOR
#include <stdint.h>
#include <stdbool.h>
#elif defined(__arm__) || defined(__mips__)
typedef signed char     int8_t;
typedef unsigned char  uint8_t;

typedef signed short     int16_t;
typedef unsigned short  uint16_t;

typedef signed int     int32_t;
typedef unsigned int  uint32_t;

typedef long long unsigned int uint64_t;
typedef long long signed int int64_t;

typedef _Bool    bool;

typedef uint32_t size_t;

#define true ((bool)1)
#define false ((bool)0)
#else
#error Unknown target architechture
#endif

#define SECTION(__section__) __attribute__((section, __section__))

#define ARRAY_ELEMENTS(__array__) (sizeof(__array__) / sizeof(__array__[0]))

#define DIVIDE_RND_UP(__value__, __round__)     (((__value__) + (__round__) - 1) / (__round__))
#define DIVIDE_RND_DOWN(__value__, __round__)   ((__value__) / (__round__))

#define MIN(__x__, __y__)       ((__x__) < (__y__)) ? (__x__) : (__y__)
#define MAX(__x__, __y__)       ((__x__) > (__y__)) ? (__x__) : (__y__)

typedef union {
    uint64_t u64;

    struct
    {
        uint8_t pad[2];
        uint8_t u8[6];
    } oct;

    struct
    {
        uint32_t u32[2];
    } word;
} mac_t;


#define _STRINGIFY(__STR__)   #__STR__
#define STRINGIFY(__STR__)    _STRINGIFY(__STR__)

#ifdef CXX_SIMULATOR
#define VOLATILE
#else
#define VOLATILE volatile
#endif

#endif /* !TYPES_H */
OpenPOWER on IntegriCloud