X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=gp2x%2Fsoc_dummy.c;h=21aef2af4684baf38e3f8c0c671a237b92ffc883;hb=20b143089cc395dbcd51cac516a9e36f4ab6f5ac;hp=ad01ab7619092b731204fde66ac1611332fdf398;hpb=1eb704b6332072581bf7c3bc411babc66f8bda8a;p=libpicofe.git diff --git a/gp2x/soc_dummy.c b/gp2x/soc_dummy.c index ad01ab7..21aef2a 100644 --- a/gp2x/soc_dummy.c +++ b/gp2x/soc_dummy.c @@ -1,8 +1,19 @@ +/* + * (C) Gražvydas "notaz" Ignotas, 2009,2010 + * + * This work is licensed under the terms of any of these licenses + * (at your option): + * - GNU GPL, version 2 or later. + * - GNU LGPL, version 2.1 or later. + * - MAME license. + * See the COPYING file in the top-level directory. + */ + /* dummy code for qemu testing, etc */ #include #include "soc.h" -#include "../common/emu.h" +#include "../emu.h" extern void *gp2x_screens[4]; @@ -35,11 +46,6 @@ static void gp2x_video_wait_vsync_(void) { } -/* CPU clock */ -static void gp2x_set_cpuclk_(unsigned int mhz) -{ -} - /* RAM timings */ static void set_ram_timings_(void) { @@ -81,8 +87,6 @@ void dummy_init(void) gp2x_video_RGB_setscaling = gp2x_video_RGB_setscaling_; gp2x_video_wait_vsync = gp2x_video_wait_vsync_; - gp2x_set_cpuclk = gp2x_set_cpuclk_; - set_lcd_custom_rate = set_lcd_custom_rate_; unset_lcd_custom_rate = unset_lcd_custom_rate_; set_lcd_gamma = set_lcd_gamma_;