|
@@ -99,7 +99,9 @@ class NumericOutputFormat(enum.StrEnum):
|
|
return hex(value)
|
|
return hex(value)
|
|
elif self == NumericOutputFormat.HEX_SUFFIX:
|
|
elif self == NumericOutputFormat.HEX_SUFFIX:
|
|
return f"{value:X}h"
|
|
return f"{value:X}h"
|
|
- raise NotImplementedError(f"Missing numeric output for {self.value}")
|
|
|
|
|
|
+ elif self == NumericOutputFormat.INT:
|
|
|
|
+ return f"{value}"
|
|
|
|
+ raise NotImplementedError(f"Missing numeric output for {self}")
|
|
|
|
|
|
|
|
|
|
class BaseEntry(msgspec.Struct, kw_only=True):
|
|
class BaseEntry(msgspec.Struct, kw_only=True):
|