summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/drccache.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-12-30 16:33:16 -0500
committer AJR <ajrhacker@users.noreply.github.com>2017-12-30 16:33:16 -0500
commit1051d4add1ab0baf6f9500d2ba5a539f20cdb78b (patch)
tree2497e6d5497a412069675b95929478204d554bbe /src/devices/cpu/drccache.h
parent41511bcc81f8334918c30ff55d9ca9cb89d8bb08 (diff)
kamenrid, msgundam: Use PIT device (nw)
Diffstat (limited to 'src/devices/cpu/drccache.h')
-rw-r--r--src/devices/cpu/drccache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/drccache.h b/src/devices/cpu/drccache.h
index 5ff7045ecd8..bbbcf62af63 100644
--- a/src/devices/cpu/drccache.h
+++ b/src/devices/cpu/drccache.h
@@ -69,7 +69,7 @@ public:
private:
// largest block of code that can be generated at once
- static const size_t CODEGEN_MAX_BYTES = 65536;
+ static const size_t CODEGEN_MAX_BYTES = 131072;
// minimum alignment, in bytes (must be power of 2)
static const size_t CACHE_ALIGNMENT = alignof(std::max_align_t);
@@ -78,7 +78,7 @@ private:
static const size_t MAX_PERMANENT_ALLOC = 1024;
// size of "near" area at the base of the cache
- static const size_t NEAR_CACHE_SIZE = 65536;
+ static const size_t NEAR_CACHE_SIZE = 131072;
// core parameters
drccodeptr m_near; // pointer to the near part of the cache