Skip to content

Commit d6d6b8b

Browse files
committed
bump shared memory back to 150k for Genesis emulator
1 parent 231ce43 commit d6d6b8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/shared_memory/src/shared_memory.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <stdio.h>
44

55
// Total shared memory size - can be tuned based on needs
6-
#define TOTAL_MEMORY_SIZE (100 * 1024) // 256KB total shared memory
6+
#define TOTAL_MEMORY_SIZE (150 * 1024) // 256KB total shared memory
77

88
// Aligned memory pool
99
static uint8_t memory_pool_[TOTAL_MEMORY_SIZE] __attribute__((aligned(32)));

0 commit comments

Comments
 (0)