From 6f814e272bcc86c3f9341652a3cbefe0cd27c13a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Strohh=C3=A4cker?= Date: Wed, 22 Aug 2007 12:34:43 +0000 Subject: [PATCH] some space for larger blocks Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2984 --- src/cpu/core_dynrec.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cpu/core_dynrec.cpp b/src/cpu/core_dynrec.cpp index f9af3efa..7e6944f1 100644 --- a/src/cpu/core_dynrec.cpp +++ b/src/cpu/core_dynrec.cpp @@ -50,7 +50,7 @@ #include "inout.h" #include "lazyflags.h" -#define CACHE_MAXSIZE (4096) +#define CACHE_MAXSIZE (4096*2) #define CACHE_TOTAL (1024*1024*8) #define CACHE_PAGES (512) #define CACHE_BLOCKS (128*1024) @@ -135,13 +135,13 @@ static struct { #define X86 0x01 #define X86_64 0x02 -#define MIPSEL32 0x03 +#define MIPSEL 0x03 #if C_TARGETCPU == X86_64 #include "core_dynrec/risc_x64.h" #elif C_TARGETCPU == X86 #include "core_dynrec/risc_x86.h" -#elif C_TARGETCPU == MIPSEL32 +#elif C_TARGETCPU == MIPSEL #include "core_dynrec/risc_mipsel32.h" #endif