Update ADD_VMP2_INSTR.md

merge-requests/13/head
_xeroxz 3 years ago
parent dc59a073ee
commit 59511365c4

@ -6,6 +6,8 @@ This page contains the steps needed to add additional VMProtect 2 virtual instru
Consider the `ADDQ` profile which is displayed below which can be found inside of `add.cpp`. Notice that not every single instruction of the vm handler needs to be declared inside of the zydis lambda vector, however you will be required to be as explicit as it requires for each vm handler to have a unique signature.
#### Step 1, Define The Profile
```cpp
vm::handler::profile_t addq = {
// ADD [RBP+8], RAX
@ -33,6 +35,8 @@ vm::handler::profile_t addq = {
Inside of `vmprofiles.hpp` you can see a list of these profiles marked as `extern`.
#### Step 2, Declare It Extern Inside `vmprofiles.hpp`
```cpp
namespace profile
{
@ -61,6 +65,8 @@ namespace profile
Lastly the `addq` variable is added to a vector of `vm::handler::profile_t*`'s.
#### Step 3, Add The Variable To `vm::handler::profile::all`
```cpp
inline std::vector< vm::handler::profile_t * > all = {
&sregq, &sregdw, &sregw, &lregq, &lregdw, &lconstq,

Loading…
Cancel
Save