├── .gitignore ├── LICENSE ├── README.md ├── psptrace ├── __init__.py ├── psptrace.py └── winbond_instructions.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/PSPTrace/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/PSPTrace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/PSPTrace/HEAD/README.md -------------------------------------------------------------------------------- /psptrace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/PSPTrace/HEAD/psptrace/__init__.py -------------------------------------------------------------------------------- /psptrace/psptrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/PSPTrace/HEAD/psptrace/psptrace.py -------------------------------------------------------------------------------- /psptrace/winbond_instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/PSPTrace/HEAD/psptrace/winbond_instructions.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/PSPTrace/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/PSPTrace/HEAD/setup.py --------------------------------------------------------------------------------