├── .gitignore ├── LICENSE.txt ├── README.md ├── nxo64-ida.py ├── nxo64 ├── __init__.py ├── compat.py ├── consts.py ├── files.py ├── memory │ ├── __init__.py │ └── builder.py ├── nxo_exceptions.py ├── symbols.py └── utils.py ├── pyproject.toml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSRBerry/nxo64/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSRBerry/nxo64/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSRBerry/nxo64/HEAD/README.md -------------------------------------------------------------------------------- /nxo64-ida.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSRBerry/nxo64/HEAD/nxo64-ida.py -------------------------------------------------------------------------------- /nxo64/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxo64/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSRBerry/nxo64/HEAD/nxo64/compat.py -------------------------------------------------------------------------------- /nxo64/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSRBerry/nxo64/HEAD/nxo64/consts.py -------------------------------------------------------------------------------- /nxo64/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSRBerry/nxo64/HEAD/nxo64/files.py -------------------------------------------------------------------------------- /nxo64/memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSRBerry/nxo64/HEAD/nxo64/memory/__init__.py -------------------------------------------------------------------------------- /nxo64/memory/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSRBerry/nxo64/HEAD/nxo64/memory/builder.py -------------------------------------------------------------------------------- /nxo64/nxo_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSRBerry/nxo64/HEAD/nxo64/nxo_exceptions.py -------------------------------------------------------------------------------- /nxo64/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSRBerry/nxo64/HEAD/nxo64/symbols.py -------------------------------------------------------------------------------- /nxo64/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSRBerry/nxo64/HEAD/nxo64/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSRBerry/nxo64/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | lz4~=2.2.1 2 | aenum~=3.1.15 --------------------------------------------------------------------------------