aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authornotaz2011-09-23 19:29:03 +0300
committernotaz2011-09-23 19:29:03 +0300
commita80ae4a0353fce94df700ec84222d3c56c3d813a (patch)
treec6b2e473c33365cf8b33ab859681edf72ab06b01 /frontend
parentaaac9c7e007b51aa74d18975f94bffdfed01c7e8 (diff)
downloadpcsx_rearmed-a80ae4a0353fce94df700ec84222d3c56c3d813a.tar.gz
pcsx_rearmed-a80ae4a0353fce94df700ec84222d3c56c3d813a.tar.bz2
pcsx_rearmed-a80ae4a0353fce94df700ec84222d3c56c3d813a.zip
support armv5 build
Diffstat (limited to 'frontend')
-rw-r--r--frontend/cspace.c7
-rw-r--r--frontend/cspace.h (renamed from frontend/arm_utils.h)0
-rw-r--r--frontend/cspace_neon.s (renamed from frontend/arm_utils.s)0
-rw-r--r--frontend/menu.c2
-rw-r--r--frontend/plat_dummy.c12
5 files changed, 8 insertions, 13 deletions
diff --git a/frontend/cspace.c b/frontend/cspace.c
new file mode 100644
index 0000000..f5f8d35
--- /dev/null
+++ b/frontend/cspace.c
@@ -0,0 +1,7 @@
+#include "cspace.h"
+
+// TODO?
+void bgr555_to_rgb565(void *dst, const void *src, int bytes) {}
+void bgr888_to_rgb888(void *dst, const void *src, int bytes) {}
+void bgr888_to_rgb565(void *dst, const void *src, int bytes) {}
+
diff --git a/frontend/arm_utils.h b/frontend/cspace.h
index 644143b..644143b 100644
--- a/frontend/arm_utils.h
+++ b/frontend/cspace.h
diff --git a/frontend/arm_utils.s b/frontend/cspace_neon.s
index d131923..d131923 100644
--- a/frontend/arm_utils.s
+++ b/frontend/cspace_neon.s
diff --git a/frontend/menu.c b/frontend/menu.c
index cdba3ad..01b568e 100644
--- a/frontend/menu.c
+++ b/frontend/menu.c
@@ -22,7 +22,7 @@
#include "omap.h"
#include "pandora.h"
#include "pcnt.h"
-#include "arm_utils.h"
+#include "cspace.h"
#include "common/plat.h"
#include "common/input.h"
#include "linux/in_evdev.h"
diff --git a/frontend/plat_dummy.c b/frontend/plat_dummy.c
index 44ba4a8..bafb184 100644
--- a/frontend/plat_dummy.c
+++ b/frontend/plat_dummy.c
@@ -43,18 +43,6 @@ void plat_finish(void)
{
}
-void bgr555_to_rgb565(void *d, void *s, int len)
-{
-}
-
-void bgr888_to_rgb888(void *d, void *s, int len)
-{
-}
-
-void bgr888_to_rgb565(void *d, void *s, int len)
-{
-}
-
void in_update_analogs(void)
{
}