Skip to content

Commit

Permalink
mips64el set endianness to little
Browse files Browse the repository at this point in the history
  • Loading branch information
lacraig2 committed Nov 5, 2024
1 parent 097b4aa commit 85555d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panda/python/core/pandare/arch.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def _determine_bits(self):
endianness = "big"
elif self.panda.arch_name == "mips64el":
bits = 64
endianness = "big"
endianness = "little"

assert (bits is not None), f"Missing num_bits logic for {self.panda.arch_name}"
assert (endianness is not None), f"Missing endianness logic for {self.panda.arch_name}"
Expand Down

0 comments on commit 85555d5

Please sign in to comment.