1pub mod params; 2pub mod runtime; 3 4use crate::ffi; 5use hw_regmap::FlatRegmap; 6/// Trait used to extract/parse information from Rtl registers 7pub trait FromRtl { 8 fn from_rtl(ffi_hw: &mut ffi::HpuHw, regmap: &FlatRegmap) -> Self; 9}