blob: 234c2356e5cc894477b822cb9b0c481f385d8971 [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;
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;