From 77b8dfce778d0ead345abee4f6348b48f421ea2e Mon Sep 17 00:00:00 2001 From: Jorge Gorbe Moya Date: Tue, 1 Jul 2008 20:20:03 +0200 Subject: [PATCH] util.cc created, Makefile updated --- Makefile | 12 ++++++++---- util.cc | 26 ++++++++++++++++++++++++++ util.h | 27 ++++----------------------- 3 files changed, 38 insertions(+), 27 deletions(-) create mode 100644 util.cc 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<