Newer
Older
pub struct Dma {}
impl Dma {
pub fn new() -> Self {
Self {}
}
pub fn reset(&mut self) {}
}
impl Default for Dma {
fn default() -> Self {
Self::new()
}
}
pub struct Dma {}
impl Dma {
pub fn new() -> Self {
Self {}
}
pub fn reset(&mut self) {}
}
impl Default for Dma {
fn default() -> Self {
Self::new()
}
}