| //! Drivers and chip support for Matcha. | |
| #![feature(llvm_asm, const_fn, naked_functions)] | |
| #![no_std] | |
| #![crate_name = "matcha"] | |
| #![crate_type = "rlib"] | |
| mod chip_config; | |
| mod interrupts; | |
| mod plic_constants; | |
| pub mod aes; | |
| pub mod chip; | |
| pub mod gpio; | |
| pub mod hmac; | |
| pub mod i2c; | |
| pub mod plic; | |
| pub mod pwrmgr; | |
| pub mod timer; | |
| pub mod uart; | |
| pub mod usbdev; |