diff options
| author | Roland Reichwein <mail@reichwein.it> | 2020-10-17 17:37:50 +0200 | 
|---|---|---|
| committer | Roland Reichwein <mail@reichwein.it> | 2020-10-17 17:37:50 +0200 | 
| commit | 7b49d17f90f26394a116348befb5edcdffcedcb6 (patch) | |
| tree | c32e76a9bea5851bfac92708fa626373573e4f06 /Makefile | |
| parent | f86999e137f43372236f2dccd1fe3572a85c0dcd (diff) | |
Add ret and int
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 | 
1 files changed, 5 insertions, 2 deletions
| @@ -47,8 +47,11 @@ endif  PROGSRC=\      asm/assembler.cpp \      asm/chunk.cpp \ -    asm/segment.cpp \ +    asm/intel64/int.cpp \      asm/intel64/nop.cpp \ +    asm/intel64/ret.cpp \ +    asm/operators.cpp \ +    asm/segment.cpp \      bnf.cpp \      cpp.cpp \      cppbnf.cpp \ @@ -57,7 +60,6 @@ PROGSRC=\      elf.cpp \      file.cpp \      grammer.cpp \ -    intel.cpp \      lexer.cpp \      minicc.cpp \ @@ -68,6 +70,7 @@ TESTSRC=\      test-grammer.cpp \      test-lexer.cpp \      test-minicc.cpp \ +    test-asm.cpp \      googlemock/src/gmock-all.cpp \      googletest/src/gtest-all.cpp \      $(PROGSRC) | 
