diff options
| author | Jordan <jordan@psifertex.com> | 2021-02-05 11:39:40 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-05 11:39:40 -0500 |
| commit | 77469bc1badbd5e70897edf4f197d17ee7487eaf (patch) | |
| tree | b3e064166f3936ab7b31f18936c8aa49bd018c39 /python/architecture.py | |
| parent | 726b4e76013f118b35d7b517001eefc8f861d617 (diff) | |
fix max_instr_length note styling
Diffstat (limited to 'python/architecture.py')
| -rw-r--r-- | python/architecture.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/architecture.py b/python/architecture.py index 99970b01..ea868ff0 100644 --- a/python/architecture.py +++ b/python/architecture.py @@ -105,7 +105,7 @@ class Architecture(with_metaclass(_ArchitectureMetaClass, object)): >>> from binaryninja import * >>> arch = Architecture['x86'] - .. note:: The `max_instr_length` property of an architecture is not necessarily representative of the maximum instruction size of the associated CPU architecture. Rather, it represents the maximum size of a potential instruction that the architecture plugin can handle. So for example, the value for x86 is 16 despite the lagest valid instruction being only 15 bytes long, and the value for mips32 is currently 8 because multiple instrutions are decoded looking for delay slots so they can be reordered. + .. note:: The `max_instr_length` property of an architecture is not necessarily representative of the maximum instruction size of the associated CPU architecture. Rather, it represents the maximum size of a potential instruction that the architecture plugin can handle. So for example, the value for x86 is 16 despite the lagest valid instruction being only 15 bytes long, and the value for mips32 is currently 8 because multiple instrutions are decoded looking for delay slots so they can be reordered. """ name = None |
