diff --git a/Makeconf b/Makeconf index 48f99c4..5f4ffd5 100644 --- a/Makeconf +++ b/Makeconf @@ -8,9 +8,9 @@ modules_libemu.a := memory/device.o \ memory/bootrom_overlay.o \ memory/register.o \ memory/bank.o \ - memory/mbc/mbc1.o \ cpu/cpu.o \ cpu/decoder.o \ + cartridge/mbc/mbc1.o \ cartridge/cartridge.o modules_vgbc := main.o libemu.a diff --git a/memory/mbc/mbc1.cpp b/cartridge/mbc/mbc1.cpp similarity index 96% rename from memory/mbc/mbc1.cpp rename to cartridge/mbc/mbc1.cpp index 682b584..0419df8 100644 --- a/memory/mbc/mbc1.cpp +++ b/cartridge/mbc/mbc1.cpp @@ -1,4 +1,4 @@ -#include +#include #include MBC1::MBC1(Cartridge& cart) diff --git a/memory/mbc/mbc1.h b/cartridge/mbc/mbc1.h similarity index 100% rename from memory/mbc/mbc1.h rename to cartridge/mbc/mbc1.h diff --git a/main.cpp b/main.cpp index 860efb8..8fef7cb 100644 --- a/main.cpp +++ b/main.cpp @@ -1,6 +1,6 @@ #include #include -#include +#include #include #include #include