ruspiro_arch_aarch64/
lib.rs

1/***********************************************************************************************************************
2 * Copyright (c) 2020 by the authors
3 *
4 * Author: André Borrmann <pspwizard@gmx.de>
5 * License: Apache License 2.0 / MIT
6 **********************************************************************************************************************/
7#![doc(html_root_url = "https://docs.rs/ruspiro-arch-aarch64/0.1.7")]
8// we require to run with 'std' in unit tests and doc tests to have an allocator in place
9#![no_std]
10
11//! # RusPiRo Aarch64 specific API
12//!
13//! This crate provides access to Aarch64 system registers as well as specific usefull aarch64 assembly instructions
14//!
15
16pub use ruspiro_register::*;
17
18pub mod instructions;
19pub mod register;