From a7f78a8d8895e8999fbb5c05a23de2de70458642 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 20 Sep 2015 14:54:41 +0200 Subject: [PATCH] move some files around - create memory/ subdir --- Makefile.common | 2 +- griffin/griffin.c | 4 ++-- {mem => memory}/neon/memcpy-neon.S | 0 {ngc => memory/ngc}/ssaram.c | 0 {ngc => memory/ngc}/ssaram.h | 0 {wii => memory/wii}/mem2_manager.c | 0 {wii => memory/wii}/mem2_manager.h | 0 7 files changed, 3 insertions(+), 3 deletions(-) rename {mem => memory}/neon/memcpy-neon.S (100%) rename {ngc => memory/ngc}/ssaram.c (100%) rename {ngc => memory/ngc}/ssaram.h (100%) rename {wii => memory/wii}/mem2_manager.c (100%) rename {wii => memory/wii}/mem2_manager.h (100%) diff --git a/Makefile.common b/Makefile.common index d964cfa082..7daf140f3b 100644 --- a/Makefile.common +++ b/Makefile.common @@ -694,7 +694,7 @@ endif ifeq ($(HAVE_EXYNOS), 1) OBJ += gfx/drivers/exynos_gfx.o \ - mem/neon/memcpy-neon.o + memory/neon/memcpy-neon.o LIBS += $(DRM_LIBS) $(EXYNOS_LIBS) DEFINES += $(DRM_CFLAGS) $(EXYNOS_CFLAGS) endif diff --git a/griffin/griffin.c b/griffin/griffin.c index 6600eaeb7f..ef01d6786b 100644 --- a/griffin/griffin.c +++ b/griffin/griffin.c @@ -36,7 +36,7 @@ CONSOLE EXTENSIONS #ifdef RARCH_CONSOLE #ifdef HW_DOL -#include "../ngc/ssaram.c" +#include "../memory/ngc/ssaram.c" #endif #endif @@ -186,7 +186,7 @@ VIDEO DRIVER #if defined(GEKKO) #ifdef HW_RVL #include "../wii/vi_encoder.c" -#include "../wii/mem2_manager.c" +#include "../memory/wii/mem2_manager.c" #endif #endif diff --git a/mem/neon/memcpy-neon.S b/memory/neon/memcpy-neon.S similarity index 100% rename from mem/neon/memcpy-neon.S rename to memory/neon/memcpy-neon.S diff --git a/ngc/ssaram.c b/memory/ngc/ssaram.c similarity index 100% rename from ngc/ssaram.c rename to memory/ngc/ssaram.c diff --git a/ngc/ssaram.h b/memory/ngc/ssaram.h similarity index 100% rename from ngc/ssaram.h rename to memory/ngc/ssaram.h diff --git a/wii/mem2_manager.c b/memory/wii/mem2_manager.c similarity index 100% rename from wii/mem2_manager.c rename to memory/wii/mem2_manager.c diff --git a/wii/mem2_manager.h b/memory/wii/mem2_manager.h similarity index 100% rename from wii/mem2_manager.h rename to memory/wii/mem2_manager.h