diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-07-29 13:08:03 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-05 10:09:10 -0400 |
| commit | a24b82f9b3d5dbb76f700664a97f3d4904acce30 (patch) | |
| tree | 981e990b9479e0318b4e7d8fb25038ed43fc8d18 /python/variable.py | |
| parent | 764063b2b44dbeba5f2f318c971e4f4acfb48427 (diff) | |
Remove some unnecessary properties for various derived HLIL Instructions, add HLIL vars_read/vars_written
Additional progress on HLILInstruction refactor
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 |
