dtb_parser

Usage

```rust pub const BLOB: &[u8] = include_bytes!("device.dtb");

fn main() { let tree = DeviceTree::from_bytes(BLOB).unwrap(); println!("{}", tree);

assert!(!matches!(tree.find_child("memory@0"), None));

} ```

TODO