├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── modules │ └── FindCapstone.cmake ├── scripts └── gen-emitters.py ├── src ├── crv.c ├── crv.h └── crv_constants.h ├── test ├── test.c └── test_functioncall.c └── util └── immediate_shift_calculator.py /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | .vscode 3 | build* 4 | *~ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dillonb/crv/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dillonb/crv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dillonb/crv/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/FindCapstone.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dillonb/crv/HEAD/cmake/modules/FindCapstone.cmake -------------------------------------------------------------------------------- /scripts/gen-emitters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dillonb/crv/HEAD/scripts/gen-emitters.py -------------------------------------------------------------------------------- /src/crv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dillonb/crv/HEAD/src/crv.c -------------------------------------------------------------------------------- /src/crv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dillonb/crv/HEAD/src/crv.h -------------------------------------------------------------------------------- /src/crv_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dillonb/crv/HEAD/src/crv_constants.h -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dillonb/crv/HEAD/test/test.c -------------------------------------------------------------------------------- /test/test_functioncall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dillonb/crv/HEAD/test/test_functioncall.c -------------------------------------------------------------------------------- /util/immediate_shift_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dillonb/crv/HEAD/util/immediate_shift_calculator.py --------------------------------------------------------------------------------