aarch64_sysreg 0.3.6

Address translation of system registers
Documentation
  • Coverage
  • 100%
    3156 out of 3156 items documented0 out of 0 items with examples
  • Size
  • Source code size: 503.13 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 4.33 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • luodeb github:arceos-hypervisor:hypervisor

Crates.io Docs.rs Rust License

English | 中文

Introduction

aarch64_sysreg provides Address translation of system registers. It is maintained as part of the TGOSKits component set and is intended for Rust projects that integrate with ArceOS, AxVisor, or related low-level systems software.

Quick Start

Installation

Add this crate to your Cargo.toml:

[dependencies]
aarch64_sysreg = "0.3.1"

Run Check and Test

# Enter the crate directory
cd components/aarch64_sysreg

# Format code
cargo fmt --all

# Run clippy
cargo clippy --all-targets --all-features

# Run tests
cargo test --all-features

# Build documentation
cargo doc --no-deps

Integration

Example

use aarch64_sysreg as _;

fn main() {
    // Integrate `aarch64_sysreg` into your project here.
}

Documentation

Generate and view API documentation:

cargo doc --no-deps --open

Online documentation: docs.rs/aarch64_sysreg

Contributing

  1. Fork the repository and create a branch
  2. Run local format and checks
  3. Run local tests relevant to this crate
  4. Submit a PR and ensure CI passes

License

Licensed under the Apache License, Version 2.0. See LICENSE for details.