Updated dbg scripts to support shrub trees

- Added shrub tags to tagrepr
- Modified dbgrbyd.py to use last non-shrub trunk by default
- Tweaked dbgrbyd's log mode to find maximum seen weight for id padding
This commit is contained in:
Christopher Haster
2023-09-21 23:41:36 -05:00
parent dc8bc447e6
commit 3fb4350ce7
5 changed files with 451 additions and 363 deletions
+1 -1
View File
@@ -718,7 +718,7 @@ static inline bool lfsr_tag_clearshrub(lfsr_tag_t tag) {
}
static inline bool lfsr_tag_istrunk(lfsr_tag_t tag) {
return (tag & 0x6000) != 0x2000;
return (tag & 0xe000) != 0x2000;
}
static inline bool lfsr_tag_isinternal(lfsr_tag_t tag) {