diff options
Diffstat (limited to 'python/variable.py')
| -rw-r--r-- | python/variable.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/variable.py b/python/variable.py index 1ed38c2d..d5e318c2 100644 --- a/python/variable.py +++ b/python/variable.py @@ -812,8 +812,8 @@ class ParameterVariables: @dataclass(frozen=True, order=True) class AddressRange: - start:int - end:int + start:int # Inclusive starting address + end:int # Exclusive ending address def __repr__(self): return f"<{self.start:#x}-{self.end:#x}>"
\ No newline at end of file |
