├── Makefile ├── README.md ├── code ├── Makefile ├── ccd00.ld ├── ccd00.specs ├── makeConstantsHeader.py └── source │ ├── crt0.S │ ├── filesystem.c │ ├── filesystem.h │ ├── imports.h │ ├── main.c │ ├── math.S │ ├── utils.c │ └── utils.h ├── docs ├── _config.yml └── index.md ├── note ├── KFH.py ├── KSN.py ├── Makefile └── note.py ├── pyrop ├── base_modules.py ├── builder_base.py └── pyrop.py ├── res └── preview.jpg ├── rop ├── Makefile ├── constants.py ├── macros.py └── rop.py ├── ropdb ├── EUR.py ├── JPN.py └── USA.py └── utils ├── portRopDb.py └── signKWZ.py /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/README.md -------------------------------------------------------------------------------- /code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/code/Makefile -------------------------------------------------------------------------------- /code/ccd00.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/code/ccd00.ld -------------------------------------------------------------------------------- /code/ccd00.specs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/code/ccd00.specs -------------------------------------------------------------------------------- /code/makeConstantsHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/code/makeConstantsHeader.py -------------------------------------------------------------------------------- /code/source/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/code/source/crt0.S -------------------------------------------------------------------------------- /code/source/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/code/source/filesystem.c -------------------------------------------------------------------------------- /code/source/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/code/source/filesystem.h -------------------------------------------------------------------------------- /code/source/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/code/source/imports.h -------------------------------------------------------------------------------- /code/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/code/source/main.c -------------------------------------------------------------------------------- /code/source/math.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/code/source/math.S -------------------------------------------------------------------------------- /code/source/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/code/source/utils.c -------------------------------------------------------------------------------- /code/source/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/code/source/utils.h -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/docs/index.md -------------------------------------------------------------------------------- /note/KFH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/note/KFH.py -------------------------------------------------------------------------------- /note/KSN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/note/KSN.py -------------------------------------------------------------------------------- /note/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/note/Makefile -------------------------------------------------------------------------------- /note/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/note/note.py -------------------------------------------------------------------------------- /pyrop/base_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/pyrop/base_modules.py -------------------------------------------------------------------------------- /pyrop/builder_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/pyrop/builder_base.py -------------------------------------------------------------------------------- /pyrop/pyrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/pyrop/pyrop.py -------------------------------------------------------------------------------- /res/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/res/preview.jpg -------------------------------------------------------------------------------- /rop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/rop/Makefile -------------------------------------------------------------------------------- /rop/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/rop/constants.py -------------------------------------------------------------------------------- /rop/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/rop/macros.py -------------------------------------------------------------------------------- /rop/rop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/rop/rop.py -------------------------------------------------------------------------------- /ropdb/EUR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/ropdb/EUR.py -------------------------------------------------------------------------------- /ropdb/JPN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/ropdb/JPN.py -------------------------------------------------------------------------------- /ropdb/USA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/ropdb/USA.py -------------------------------------------------------------------------------- /utils/portRopDb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/utils/portRopDb.py -------------------------------------------------------------------------------- /utils/signKWZ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrNbaYoh/notehax/HEAD/utils/signKWZ.py --------------------------------------------------------------------------------