Fix handling of several instructions
We are now handling all instructions we have implmeented, and their respective flags, correctly and we now pass test 3 and 4 from Timendus' CHIP-8 test suite!
This commit is contained in:
4
Makefile
4
Makefile
@@ -15,10 +15,10 @@ disassembler: $(wildcard disassembler/*.cpp) | $(BIN_DIR)
|
||||
voidEmu: $(wildcard src/*.cpp) | $(BIN_DIR)
|
||||
$(CXX) $(CXXFLAGS) $^ -o ${BIN_DIR}/$@ $(LDFLAGS)
|
||||
|
||||
$(BIN_DIR) $(OBJ_DIR):
|
||||
$(BIN_DIR):
|
||||
mkdir -p $@
|
||||
|
||||
clean:
|
||||
rm -rf $(OBJ_DIR) $(BIN_DIR)
|
||||
rm -rf $(BIN_DIR)
|
||||
|
||||
.PHONY: all clean run
|
||||
|
||||
Reference in New Issue
Block a user