This small tool is used to apply a custom memory filtering to a RAM export generated with RAIntegration
Modify the filter() function in filter.py
Some examples :
# this filter out odd numbers
def filter(address, value, lastValue, InitialValue) -> bool:
return value % 2 == 0# this only keeps prime numbers
def filter(address, value, lastValue, InitialValue) -> bool:
for i in range(0, value / 2):
if value % i == 0:
return False
return True