32x: built-in BIOS; reset handling; 68k memhandler split
authornotaz <notasas@gmail.com>
Sat, 3 Oct 2009 16:21:59 +0000 (16:21 +0000)
committernotaz <notasas@gmail.com>
Sat, 3 Oct 2009 16:21:59 +0000 (16:21 +0000)
git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@801 be3aeb3a-fb24-0410-a615-afba39da0efa

common/emu.c

index 507437a..a8de902 100644 (file)
@@ -1299,6 +1299,19 @@ void emu_init(void)
        char path[512];\r
        int pos;\r
 \r
+#if 0\r
+       // FIXME: handle through menu, etc\r
+       FILE *f;\r
+       f = fopen("32X_M_BIOS.BIN", "rb");\r
+       p32x_bios_m = malloc(2048);\r
+       fread(p32x_bios_m, 1, 2048, f);\r
+       fclose(f);\r
+       f = fopen("32X_S_BIOS.BIN", "rb");\r
+       p32x_bios_s = malloc(1024);\r
+       fread(p32x_bios_s, 1, 1024, f);\r
+       fclose(f);\r
+#endif\r
+\r
        /* make dirs for saves */\r
        pos = plat_get_root_dir(path, sizeof(path) - 4);\r
        mkdir_path(path, pos, "mds");\r