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 /Makefile | |
parent | 8f2e3e7af0360cca7f8918ae41cc573f8cd88d7f (diff) |
Implemented dec, mul, imul
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -48,10 +48,13 @@ PROGSRC=\ asm/assembler.cpp \ asm/chunk.cpp \ asm/intel64/add.cpp \ + asm/intel64/dec.cpp \ asm/intel64/inc.cpp \ + asm/intel64/imul.cpp \ asm/intel64/int.cpp \ asm/intel64/jmp.cpp \ asm/intel64/mov.cpp \ + asm/intel64/mul.cpp \ asm/intel64/nop.cpp \ asm/intel64/ret.cpp \ asm/intel64/xor.cpp \ |