about summary refs log tree commit diff stats
path: root/miasm2/jitter/op_semantics.c
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2018-05-16 10:27:33 +0200
committerAjax <commial@gmail.com>2018-05-16 11:22:38 +0200
commite934f6b99c7d6d7c06be63c3b8b37b04c61534d8 (patch)
tree570a7ae125d839d29912fbbc869cd08c14ce4d08 /miasm2/jitter/op_semantics.c
parentb12df84ab573213aba05540e15bebd87f2d78613 (diff)
downloadmiasm-e934f6b99c7d6d7c06be63c3b8b37b04c61534d8.tar.gz
miasm-e934f6b99c7d6d7c06be63c3b8b37b04c61534d8.zip
Move umod/udiv/imod/idiv operations to op_semantics
Diffstat (limited to '')
-rw-r--r--miasm2/jitter/op_semantics.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/miasm2/jitter/op_semantics.c b/miasm2/jitter/op_semantics.c
index 82f56422..5a8becc4 100644
--- a/miasm2/jitter/op_semantics.c
+++ b/miasm2/jitter/op_semantics.c
@@ -774,3 +774,19 @@ uint64_t double_to_mem_64(double d)
 #endif
 	return m;
 }
+
+UDIV(16)
+UDIV(32)
+UDIV(64)
+
+UMOD(16)
+UMOD(32)
+UMOD(64)
+
+IDIV(16)
+IDIV(32)
+IDIV(64)
+
+IMOD(16)
+IMOD(32)
+IMOD(64)