diff options
author | aliaspider | 2014-12-10 01:03:14 +0100 |
---|---|---|
committer | aliaspider | 2014-12-10 01:03:14 +0100 |
commit | afff31b5087e0e12a42c0301057ea56e7c6d2b75 (patch) | |
tree | 4972f6851b729ebd7267530b6a484dffc41a78af | |
parent | 9f97113292b60d4530678e578d8fe65bb675db50 (diff) | |
download | picogpsp-afff31b5087e0e12a42c0301057ea56e7c6d2b75.tar.gz picogpsp-afff31b5087e0e12a42c0301057ea56e7c6d2b75.tar.bz2 picogpsp-afff31b5087e0e12a42c0301057ea56e7c6d2b75.zip |
fix arm target compile errors.
-rw-r--r-- | Makefile.common | 1 | ||||
-rw-r--r-- | common.h | 2 | ||||
-rw-r--r-- | gba_memory.h (renamed from memory.h) | 0 |
3 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index 259e4c3..39dd9e9 100644 --- a/Makefile.common +++ b/Makefile.common @@ -22,6 +22,7 @@ ifeq ($(CPU_ARCH), x86_32) SOURCES_ASM += $(CORE_DIR)/x86/x86_stub.S endif ifeq ($(CPU_ARCH), arm) +SOURCES_C += $(CORE_DIR)/arm/warm.c SOURCES_ASM += $(CORE_DIR)/arm/arm_stub.S \ $(CORE_DIR)/arm/video_blend.S endif @@ -224,7 +224,7 @@ typedef u32 fixed8_24; #include "SDL.h" #endif #include "cpu.h" -#include "memory.h" +#include "gba_memory.h" #include "video.h" #include "input.h" #include "sound.h" |