diff --git a/include/unicorn/unicorn.h b/include/unicorn/unicorn.h index fee75297..e4b5e359 100644 --- a/include/unicorn/unicorn.h +++ b/include/unicorn/unicorn.h @@ -149,9 +149,9 @@ typedef enum uc_mem_type { UC_MEM_READ = 16, // Memory is read from UC_MEM_WRITE, // Memory is written to UC_MEM_READ_WRITE, // Memory is accessed (either READ or WRITE) - UC_MEM_WRITE_NW, // write to non-writable - UC_MEM_READ_NR, // read from non-readable - UC_MEM_NX, // read from non-readable + UC_MEM_WRITE_NW, // write to non-writable memory + UC_MEM_READ_NR, // read from non-readable memory + UC_MEM_NX, // fetch from non-executable memory } uc_mem_type; // All type of hooks for uc_hook_add() API.