blob: 67af24d440f772a685cd2dacb9f80c99b975cd7a [file] [log] [blame]
//! 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;