├── .gitignore ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENSE ├── README.md ├── examples └── example01.cpp └── include ├── ctasm.hpp └── ctasm_emit.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garc0/CTAsm/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garc0/CTAsm/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garc0/CTAsm/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garc0/CTAsm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garc0/CTAsm/HEAD/README.md -------------------------------------------------------------------------------- /examples/example01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garc0/CTAsm/HEAD/examples/example01.cpp -------------------------------------------------------------------------------- /include/ctasm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garc0/CTAsm/HEAD/include/ctasm.hpp -------------------------------------------------------------------------------- /include/ctasm_emit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garc0/CTAsm/HEAD/include/ctasm_emit.hpp --------------------------------------------------------------------------------