diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-11-10 20:05:04 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-11-10 20:05:04 +0100 |
commit | 32e19781c554c83643fcab4c4f39a6a552c367f5 (patch) | |
tree | 09f42ab252ef5c2204163c46b9d3a65548a19f8a /asm/intel64/all_ops.h | |
parent | 8f2e3e7af0360cca7f8918ae41cc573f8cd88d7f (diff) |
Implemented dec, mul, imul
Diffstat (limited to 'asm/intel64/all_ops.h')
-rw-r--r-- | asm/intel64/all_ops.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/asm/intel64/all_ops.h b/asm/intel64/all_ops.h index 59ce624..9f41c5d 100644 --- a/asm/intel64/all_ops.h +++ b/asm/intel64/all_ops.h @@ -1,10 +1,13 @@ #pragma once #include "add.h" +#include "dec.h" +#include "imul.h" #include "inc.h" #include "int.h" #include "jmp.h" #include "mov.h" +#include "mul.h" #include "nop.h" #include "ret.h" #include "xor.h" |