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
#![feature(const_intoiterator_identity)]
#![feature(const_refs_to_cell)]
#![feature(generic_arg_infer)]
#![feature(const_trait_impl)]
#![feature(naked_functions)]
#![feature(const_mut_refs)]
#![feature(slice_ptr_get)]
#![feature(slice_ptr_len)]
#![feature(lint_reasons)]
#![feature(const_iter)]
#![feature(decl_macro)]
#![feature(asm_const)]
#![feature(const_for)]
#![deny(unsafe_op_in_unsafe_fn)]
#![allow(clippy::verbose_bit_mask)] #![cfg_attr(
feature = "doc",
doc(html_logo_url = "https://r3-os.github.io/r3/logo-small.svg")
)]
#![doc = include_str!("./lib.md")]
#![no_std]
#[doc(hidden)]
pub extern crate r3_core_ks as r3_core;
#[doc(hidden)]
pub extern crate r3_kernel;
#[doc(hidden)]
pub extern crate r3_portkit;
#[doc(hidden)]
#[cfg(target_os = "none")]
pub extern crate core;
#[cfg(doc)]
#[doc = include_str!("../CHANGELOG.md")]
pub mod _changelog_ {}
#[cfg(target_os = "none")]
mod arm;
#[doc(hidden)]
pub mod threading {
pub mod cfg;
#[cfg(target_os = "none")]
pub mod imp;
}
#[doc(hidden)]
pub mod gic {
pub mod cfg;
mod gic_regs;
pub mod imp;
}
#[doc(hidden)]
pub mod startup {
#[cfg_attr(not(target_os = "none"), allow(dead_code))]
pub mod cfg;
#[cfg(target_os = "none")]
pub mod imp;
}
#[doc(hidden)]
pub mod sp804 {
pub mod cfg;
pub mod imp;
mod sp804_regs;
}
pub use self::gic::cfg::*;
pub use self::sp804::cfg::*;
pub use self::startup::cfg::*;
pub use self::threading::cfg::*;