about summary refs log tree commit diff stats
path: root/miasm2/jitter/vm_mngr.h
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2016-11-10 10:09:23 +0100
committerAjax <commial@gmail.com>2016-11-10 10:09:23 +0100
commit3b21f49c6c95f127e17d55d1d1a2d6d00ac8d3b8 (patch)
treec318532d49448126a96ab2c422ae1459d3b58293 /miasm2/jitter/vm_mngr.h
parent9821e83e79a45e45a99ed89eb8951bd278cc83d8 (diff)
downloadmiasm-3b21f49c6c95f127e17d55d1d1a2d6d00ac8d3b8.tar.gz
miasm-3b21f49c6c95f127e17d55d1d1a2d6d00ac8d3b8.zip
Use 64bits for vm address
Diffstat (limited to '')
-rw-r--r--miasm2/jitter/vm_mngr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/jitter/vm_mngr.h b/miasm2/jitter/vm_mngr.h
index 13ec065a..607d5866 100644
--- a/miasm2/jitter/vm_mngr.h
+++ b/miasm2/jitter/vm_mngr.h
@@ -93,8 +93,8 @@ typedef struct {
 	struct memory_page_node* memory_pages_array;
 
 	unsigned int *code_addr_tab;
-	unsigned int code_bloc_pool_ad_min;
-	unsigned int code_bloc_pool_ad_max;
+	uint64_t code_bloc_pool_ad_min;
+	uint64_t code_bloc_pool_ad_max;
 
 	uint64_t exception_flags;
 	uint64_t exception_flags_new;