mirror of
https://github.com/cemu-project/idapython.git
synced 2024-12-18 05:41:55 +01:00
fix: python processor modules were not working
This commit is contained in:
parent
3e9ea5f503
commit
081b988a03
@ -485,7 +485,7 @@ class processor_t(pyidc_opaque_object_t):
|
||||
short processor names similar to the one in ph.psnames.
|
||||
This method can be overridden to return to the kernel a different IDP description.
|
||||
"""
|
||||
return '\x01'.join(map(lambda t: '\x01'.join(t), zip(self.plnames, self.psnames)))
|
||||
return self.plnames[0] + ':' + ':'.join(self.psnames)
|
||||
|
||||
def get_uFlag(self):
|
||||
"""Use this utility function to retrieve the 'uFlag' global variable"""
|
||||
|
@ -1449,7 +1449,7 @@ class processor_t(pyidc_opaque_object_t):
|
||||
short processor names similar to the one in ph.psnames.
|
||||
This method can be overridden to return to the kernel a different IDP description.
|
||||
"""
|
||||
return '\x01'.join(map(lambda t: '\x01'.join(t), zip(self.plnames, self.psnames)))
|
||||
return self.plnames[0] + ':' + ':'.join(self.psnames)
|
||||
|
||||
def get_uFlag(self):
|
||||
"""Use this utility function to retrieve the 'uFlag' global variable"""
|
||||
|
Loading…
Reference in New Issue
Block a user