1# aarch64 page table manipulation
2
3[![crates.io page](https://img.shields.io/crates/v/aarch64-paging.svg)](https://crates.io/crates/aarch64-paging)
4[![docs.rs page](https://docs.rs/aarch64-paging/badge.svg)](https://docs.rs/aarch64-paging)
5
6This crate provides a library to manipulate page tables conforming to the AArch64 Virtual Memory
7System Architecture.
8
9Currently it only supports:
10
11- stage 1 page tables
12- 4 KiB pages
13- EL3, NS-EL2, NS-EL2&0 and NS-EL1&0 translation regimes
14
15This is not an officially supported Google product.
16
17## License
18
19Licensed under either of
20
21- Apache License, Version 2.0
22  ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
23- MIT license
24  ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
25
26at your option.
27
28## Contributing
29
30If you want to contribute to the project, see details of
31[how we accept contributions](CONTRIBUTING.md).
32