diff options
| author | Rusty Wagner <rusty@vector35.com> | 2017-02-28 19:01:47 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2017-02-28 19:01:47 -0500 |
| commit | afe6a3c1d97c1ac2fd3be04f710caa1424216edd (patch) | |
| tree | b95d557a1644a08d2f9e97568c27b2d1f86f69b6 /python | |
| parent | 57a3ea491d2d819ab5415d8d7bdf7e9e505808fc (diff) | |
Adding return address register value
Diffstat (limited to 'python')
| -rw-r--r-- | python/function.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/function.py b/python/function.py index 86c93bf7..07187080 100644 --- a/python/function.py +++ b/python/function.py @@ -101,6 +101,8 @@ class RegisterValue(object): return "<table: %s>" % ', '.join([repr(i) for i in self.table]) if self.type == RegisterValueType.OffsetFromUndeterminedValue: return "<undetermined with offset %#x>" % self.offset + if self.type == RegisterValueType.ReturnAddressValue: + return "<return address>" return "<undetermined>" |
