hack for bios write disable thing
[pcsx_rearmed.git] / frontend / plat_dummy.c
1 /*
2  * (C) notaz, 2010
3  *
4  * This work is licensed under the terms of the GNU GPLv2 or later.
5  * See the COPYING file in the top-level directory.
6  */
7
8 #include "common/input.h"
9 #include "linux/fbdev.h"
10
11 struct vout_fbdev *layer_fb;
12 int g_layer_x, g_layer_y, g_layer_w, g_layer_h;
13 struct in_default_bind in_evdev_defbinds[] = {
14         { 0, 0, 0 },
15 };
16
17 int omap_enable_layer(int enabled)
18 {
19         return 0;
20 }
21
22 void plat_video_menu_enter(int is_rom_loaded)
23 {
24 }
25
26 void plat_video_menu_begin(void)
27 {
28 }
29
30 void plat_video_menu_end(void)
31 {
32 }
33
34 void plat_video_menu_leave(void)
35 {
36 }
37
38 void plat_init(void)
39 {
40 }
41
42 void plat_finish(void)
43 {
44 }
45
46 void bgr555_to_rgb565(void *d, void *s, int len)
47 {
48 }
49
50 void bgr888_to_rgb888(void *d, void *s, int len)
51 {
52 }