input: in_gp2x refactoring
[libpicofe.git] / gp2x / soc_mmsp2.c
index d6c40e5..35748d8 100644 (file)
@@ -12,6 +12,7 @@
 #include "soc_mmsp2.h"
 #include "plat_gp2x.h"
 #include "../common/emu.h"
+#include "../common/plat.h"
 #include "../common/arm_utils.h"
 #include "940ctl.h"
 
@@ -40,7 +41,6 @@ static unsigned short gp2x_screenaddr_old[4];
 static unsigned short memtimex_old[2];
 static unsigned short reg0910;
 
-
 /* video stuff */
 static void gp2x_video_flip_(void)
 {
@@ -353,6 +353,10 @@ static void set_lcd_gamma_(int g100, int A_SNs_curve)
        gamma_was_changed = 1;
 }
 
+static int gp2x_read_battery_(void)
+{
+       return -1; /* TODO? */
+}
 
 /* these are not quite MMSP2 related,
  * more to GP2X F100/F200 consoles themselves. */
@@ -503,6 +507,10 @@ void mmsp2_init(void)
 
        set_ram_timings = set_ram_timings_;
        unset_ram_timings = unset_ram_timings_;
+       gp2x_read_battery = gp2x_read_battery_;
+
+       gp2x_get_ticks_ms = plat_get_ticks_ms_good;
+       gp2x_get_ticks_us = plat_get_ticks_us_good;
 }
 
 void mmsp2_finish(void)