diff options
| author | Camille Mougey <commial@gmail.com> | 2019-01-16 15:10:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-16 15:10:22 +0100 |
| commit | 28285a330da5fd586e31dceb152a35c6171698ba (patch) | |
| tree | b9f3649a1c0d0bacef142bfcf2b98310c89a5f70 /miasm2/jitter/op_semantics.c | |
| parent | 026069748a814259018ddc660e0a3d43cc0d681c (diff) | |
| parent | e8a12bea1445afd764f4ef7075075a773fe84677 (diff) | |
| download | miasm-28285a330da5fd586e31dceb152a35c6171698ba.tar.gz miasm-28285a330da5fd586e31dceb152a35c6171698ba.zip | |
Merge pull request #942 from serpilliere/rename_idiv_sdiv
Rename idiv/imod into sdiv/smod
Diffstat (limited to 'miasm2/jitter/op_semantics.c')
| -rw-r--r-- | miasm2/jitter/op_semantics.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/miasm2/jitter/op_semantics.c b/miasm2/jitter/op_semantics.c index 091da87f..46e6cca1 100644 --- a/miasm2/jitter/op_semantics.c +++ b/miasm2/jitter/op_semantics.c @@ -738,12 +738,12 @@ UMOD(16) UMOD(32) UMOD(64) -IDIV(8) -IDIV(16) -IDIV(32) -IDIV(64) - -IMOD(8) -IMOD(16) -IMOD(32) -IMOD(64) +SDIV(8) +SDIV(16) +SDIV(32) +SDIV(64) + +SMOD(8) +SMOD(16) +SMOD(32) +SMOD(64) |