You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/tests/unit-tests/mocks/arch.py

10 lines
197 B
Python

import types
class Amd64Arch(types.ModuleType):
def __init__(self, module_name):
super(Amd64Arch, self).__init__(module_name)
self.ptrsize = 8
self.endian = "little"