From 77469bc1badbd5e70897edf4f197d17ee7487eaf Mon Sep 17 00:00:00 2001 From: Jordan Date: Fri, 5 Feb 2021 11:39:40 -0500 Subject: fix max_instr_length note styling --- python/architecture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') 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 -- cgit v1.3.1