From: Jorge Gorbe Moya Date: Tue, 1 Jul 2008 18:20:03 +0000 (+0200) Subject: util.cc created, Makefile updated X-Git-Tag: v0.1~38 X-Git-Url: http://slack.codemaniacs.com/git/?a=commitdiff_plain;h=77b8dfce778d0ead345abee4f6348b48f421ea2e;p=wenboi.git util.cc created, Makefile updated --- diff --git a/Makefile b/Makefile index 0e9f583..f135bf6 100644 --- a/Makefile +++ b/Makefile @@ -6,23 +6,27 @@ all: tests tests: tests/test_gbrom tests/test_core -GBVideo.o: GBVideo.cc GBVideo.h Logger.h util.h +util.o: util.cc util.h g++ $(CXXFLAGS) -c -o $@ $< -GBMemory.o: GBMemory.cc GBMemory.h Logger.h +GBVideo.o: GBVideo.cc GBVideo.h Logger.h util.h gbcore.h + g++ $(CXXFLAGS) -c -o $@ $< + +GBMemory.o: GBMemory.cc GBMemory.h Logger.h MBC.h gbcore.h g++ $(CXXFLAGS) -c -o $@ $< MBC.o: MBC.cc MBC.h Logger.h g++ $(CXXFLAGS) -c -o $@ $< gbcore.o: gbcore.cc gbcore.h opcodes.h disasm.h \ - GBRom.h Logger.h MBC.h GBMemory.h + GBRom.h Logger.h MBC.h GBMemory.h util.h g++ $(CXXFLAGS) -c -o $@ $< tests/test_gbrom: GBRom.cc GBRom.h g++ $(CXXFLAGS) $(LDFLAGS) -DTEST_GBROM -o $@ GBRom.cc -tests/test_core: tests/test_core.cc gbcore.o MBC.o GBMemory.o GBRom.o GBVideo.o +tests/test_core: tests/test_core.cc gbcore.o MBC.o GBMemory.o GBRom.o \ + GBVideo.o util.o g++ $(CXXFLAGS) $(LDFLAGS) -o $@ $^ clean: diff --git a/util.cc b/util.cc new file mode 100644 index 0000000..9258de7 --- /dev/null +++ b/util.cc @@ -0,0 +1,26 @@ +#include "util.h" + +uint32 set_bit(uint32 val, uint32 pos) +{ + uint32 mask = 1<