Skip to content

KiliLoje/Custom-memory-filter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

CUSTOM MEMORY FILTERING

This small tool is used to apply a custom memory filtering to a RAM export generated with RAIntegration


How to use

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

About

Custom memory filters for RAM exports generated with RAIntegration

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages