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:
--- /dev/null
+#include "util.h"
+
+uint32 set_bit(uint32 val, uint32 pos)
+{
+ uint32 mask = 1<<pos;
+ return val | mask;
+}
+
+uint32 reset_bit(uint32 val, uint32 pos)
+{
+ uint32 mask = ~(1<<pos);
+ return val & mask;
+}
+
+uint32 flip_bit(uint32 val, uint32 pos)
+{
+ uint32 mask = 1<<pos;
+ return val ^ mask;
+}
+
+bool check_bit(uint32 val, uint32 pos)
+{
+ uint32 mask = 1<<pos;
+ return ((val&mask) != 0);
+}
+
#include "sized_types.h"
-uint32 set_bit(uint32 val, uint32 pos)
-{
- uint32 mask = 1<<pos;
- return val | mask;
-}
-
-uint32 reset_bit(uint32 val, uint32 pos)
-{
- uint32 mask = ~(1<<pos);
- return val & mask;
-}
-
-uint32 flip_bit(uint32 val, uint32 pos)
-{
- uint32 mask = 1<<pos;
- return val ^ mask;
-}
-
-bool check_bit(uint32 val, uint32 pos)
-{
- uint32 mask = 1<<pos;
- return ((val&mask) != 0);
-}
+uint32 set_bit(uint32 val, uint32 pos);
+uint32 reset_bit(uint32 val, uint32 pos);
+uint32 flip_bit(uint32 val, uint32 pos);
+bool check_bit(uint32 val, uint32 pos);
#endif