diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2018-05-16 14:52:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-16 14:52:41 +0200 |
| commit | db2b86a9f4d5ba1a2eafb00ca1324500e1080463 (patch) | |
| tree | 7c690705ee691efecbc469646b60604ae9a4a69d /miasm2/jitter/op_semantics.c | |
| parent | 652bf298e56214c33c2291064eba00d1559a07aa (diff) | |
| parent | 33d66355955f54651d52ccca6109dca8b5576113 (diff) | |
| download | miasm-db2b86a9f4d5ba1a2eafb00ca1324500e1080463.tar.gz miasm-db2b86a9f4d5ba1a2eafb00ca1324500e1080463.zip | |
Merge pull request #744 from commial/refactor/move-to-op-semantics
Refactor/move to op semantics
Diffstat (limited to '')
| -rw-r--r-- | miasm2/jitter/op_semantics.c | 16 |
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) |