We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55a7e5e commit 4b525a4Copy full SHA for 4b525a4
__init__.py
@@ -19,7 +19,9 @@
19
20
log_error,
21
22
- CallingConvention)
+ CallingConvention,
23
+
24
+ Endianness)
25
26
# Type 1 instructions are those that take two operands.
27
TYPE1_INSTRUCTIONS = [
@@ -1095,3 +1097,4 @@ class DefaultCallingConvention(CallingConvention):
1095
1097
arch.register_calling_convention(DefaultCallingConvention(arch, 'default'))
1096
1098
standalone = arch.standalone_platform
1099
standalone.default_calling_convention = arch.calling_conventions['default']
1100
+BinaryViewType['ELF'].register_arch(105, Endianness.LittleEndian, arch)
0 commit comments