Skip to main content

ab_riscv_primitives/
lib.rs

1#![no_std]
2#![feature(
3    const_cmp,
4    const_convert,
5    const_default,
6    const_destruct,
7    const_index,
8    const_option_ops,
9    const_ops,
10    const_trait_impl,
11    const_try,
12    const_try_residual,
13    generic_const_exprs,
14    stmt_expr_attributes,
15    try_blocks
16)]
17#![expect(incomplete_features, reason = "generic_const_exprs")]
18
19pub mod instructions;
20pub mod registers;