├── CMakeLists.txt ├── README.md ├── assets └── image.png ├── bin ├── eop24-26229.x64.bin └── obj │ └── .gitkeep ├── include ├── common.h ├── firebeam.h └── sal.h ├── makefile ├── plugin.json ├── plugin.py ├── scripts ├── relocs.py └── sections.ld └── src └── main.cc /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/eop24-26229/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/eop24-26229/HEAD/README.md -------------------------------------------------------------------------------- /assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/eop24-26229/HEAD/assets/image.png -------------------------------------------------------------------------------- /bin/eop24-26229.x64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/eop24-26229/HEAD/bin/eop24-26229.x64.bin -------------------------------------------------------------------------------- /bin/obj/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/eop24-26229/HEAD/include/common.h -------------------------------------------------------------------------------- /include/firebeam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/eop24-26229/HEAD/include/firebeam.h -------------------------------------------------------------------------------- /include/sal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/eop24-26229/HEAD/include/sal.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/eop24-26229/HEAD/makefile -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/eop24-26229/HEAD/plugin.json -------------------------------------------------------------------------------- /plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/eop24-26229/HEAD/plugin.py -------------------------------------------------------------------------------- /scripts/relocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/eop24-26229/HEAD/scripts/relocs.py -------------------------------------------------------------------------------- /scripts/sections.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/eop24-26229/HEAD/scripts/sections.ld -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/eop24-26229/HEAD/src/main.cc --------------------------------------------------------------------------------