diff options
author | Nebuleon <nebuleon@alakazam> | 2013-07-31 03:08:35 +0000 |
---|---|---|
committer | Nebuleon <nebuleon@alakazam> | 2013-07-31 03:08:35 +0000 |
commit | 28cbcd7782331d7f646e50565f3dcd6cf23d35bc (patch) | |
tree | c25d8ebbec637e26b403b067ccfbff9b73d605ff | |
parent | 4c5ef5f689e52f355cdaf283a12ba32c04ad56db (diff) | |
download | ReGBA-28cbcd7782331d7f646e50565f3dcd6cf23d35bc.zip ReGBA-28cbcd7782331d7f646e50565f3dcd6cf23d35bc.tar.gz ReGBA-28cbcd7782331d7f646e50565f3dcd6cf23d35bc.tar.bz2 |
cpu_common.c, cpu_common.h: Move into the cross-platform directory.
-rw-r--r-- | source/cpu_common.c (renamed from source/dstwo/cpu_common.c) | 0 | ||||
-rw-r--r-- | source/cpu_common.h (renamed from source/dstwo/cpu_common.h) | 0 | ||||
-rw-r--r-- | source/dstwo/Makefile | 4 |
3 files changed, 2 insertions, 2 deletions
diff --git a/source/dstwo/cpu_common.c b/source/cpu_common.c index 0e0dc1c..0e0dc1c 100644 --- a/source/dstwo/cpu_common.c +++ b/source/cpu_common.c diff --git a/source/dstwo/cpu_common.h b/source/cpu_common.h index 67cb5a2..67cb5a2 100644 --- a/source/dstwo/cpu_common.h +++ b/source/cpu_common.h diff --git a/source/dstwo/Makefile b/source/dstwo/Makefile index a5dcf0e..8633973 100644 --- a/source/dstwo/Makefile +++ b/source/dstwo/Makefile @@ -34,7 +34,7 @@ NM = $(CROSS)nm OBJDUMP = $(CROSS)objdump
# - - - Sources, objects and headers - - -
-C_SOURCES = gpsp_main.c cpu_common.c cpu_asm.c video.c gu.c memory.c \
+C_SOURCES = gpsp_main.c ../cpu_common.c cpu_asm.c video.c gu.c memory.c \
sound.c input.c gui.c cheats.c bios.c draw.c bdf_font.c \
zip.c bitmap.c ds2_main.c charsets.c stats.c guru_meditation.c \
arm_guru_meditation.c port.c
@@ -47,7 +47,7 @@ CPP_OBJECTS = $(CPP_SOURCES:.cpp=.o) ASM_OBJECTS = $(ASM_SOURCES:.S=.o)
OBJECTS = $(C_OBJECTS) $(CPP_OBJECTS) $(ASM_OBJECTS)
HEADERS = bdf_font.h bios.h bitmap.h charsets.h cheats.h \
- common.h cpu_common.h cpu.h draw.h gpsp_main.h gu.h gui.h \
+ common.h ../cpu_common.h cpu.h draw.h gpsp_main.h gu.h gui.h \
input.h memory.h message.h mips_emit.h sound.h \
stats.h video.h zip.h ../port.h
|