Skip to content

Commit

Permalink
Add basic README for the obfuscator
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed Oct 22, 2024
1 parent 9cc2c70 commit 1605063
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions obfuscator/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# obfuscator

Set up the virtual environment and install the dependencies:

```sh
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```

Build the obfuscator:

```sh
cmake -B build -G Ninja
cmake --build build
```

Run the tests without obfuscation:

```sh
python test.py --no-obfuscator riscvm.exe
```

Run the obfuscation tests:

```sh
python test.py riscvm.exe
```

0 comments on commit 1605063

Please sign in to comment.