Not sure the best format, but it appears to be common where similar registers are just repeated, and could benefit from a concatenation / joining.
ie,
SHORT, x01, error code 1
SHORT, x02, error code 2
instead, maybe this format:
SHORT[], x01~x02, error code
or with . specifed as the join delimeter
SHORT[.], x01~x02, error code
may also need a filter function... to remove zeros.
getting into scripting language territory here :S
Maybe instead of a filter function, a regex replace?
Not sure the best format, but it appears to be common where similar registers are just repeated, and could benefit from a concatenation / joining.
ie,
SHORT, x01, error code 1
SHORT, x02, error code 2
instead, maybe this format:
or with . specifed as the join delimeter
may also need a filter function... to remove zeros.
getting into scripting language territory here :S
Maybe instead of a filter function, a regex replace?