MU Library
mu.hpp
Go to the documentation of this file.
1 // SPDX-License-Identifier: Apache-2.0
2 // Copyright 2024 XCENA Inc.
3 
4 #pragma once
5 
6 #define LIB_MU_VERSION "0.1.0"
7 
8 #if defined(_GLOBAL_TARGET_SW_SIM_)
9 #include "sim/sim_mu.hpp"
10 #endif
11 
12 #include <cstdint>
13 #include <cstring>
14 
15 #include "mu/assert/assert.hpp"
16 #include "mu/atomic/atomic.hpp"
17 #include "mu/cache/cache.hpp"
18 #include "mu/clock/clock.hpp"
19 #include "mu/crt0/kernel.hpp"
20 #include "mu/dpe/dpe.hpp"
21 #include "mu/info/info.hpp"
22 #include "mu/logger/logger.hpp"
23 #include "mu/message/message.hpp"
24 #include "mu/ndarray/ndarray.hpp"
25 #include "mu/packet/task.hpp"
26 #include "mu/printf/printf.hpp"
27 #include "mu/profiler/profiler.hpp"