https://github.com/daid/pyevilemu
https://github.com/daid/pyevilemu
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/daid/pyevilemu
- Owner: daid
- License: mit
- Created: 2022-11-21T12:39:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-15T06:40:45.000Z (over 1 year ago)
- Last Synced: 2025-04-08T21:11:41.042Z (about 1 year ago)
- Language: Python
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyevilemu
A python library to read and write memory of running emulators. This does not require cooperation from the emulator.
This is called evilemu, because accessing memory of another process is inherently evil, dangerous and very powerful.
Note that this library is currently limited to:
* Windows
* Gameboy (color) emulators
Both could be expanded in the future to include more emulators and operating systems.
## Installation
Install this library with:
```sh
$ python3 setup.py install
```
## Usage
Using evilemu is not complicated.
```python
import evilemu
for emulator in evilemu.find_gameboy_emulators():
print("Found a running emulator:" , emulator)
print("Title of the ROM:", emulator.read_rom(0x0134, 16))
```
Available functions of the emulator objects can be found at `evilemu/emulator.py`