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    try_blocks
15)]
16#![expect(incomplete_features, reason = "generic_const_exprs")]
17
18pub mod instruction;
19pub mod registers;