Currently, `parse_dtb` raises an Exception with message "Unknown Tag: 4", which is DTB_NOP. I believe the fix is as simple as adding this to `parse_dtb`: ``` elif tag == DTB_NOP: continue ```
Currently,
parse_dtbraises an Exception with message "Unknown Tag: 4", which is DTB_NOP.I believe the fix is as simple as adding this to
parse_dtb: