gpsp/gpsp_config.h
David Guillen Fandos 9fc117ef5c Update version and README
Let's make this version more... official, now that it will have
multiplayer support. Versioning might come useful for users.
2024-01-15 01:04:00 +01:00

35 lines
1.1 KiB
C

#ifndef GPSP_CONFIG_H
#define GPSP_CONFIG_H
#define GPSP_NAME "gpSP"
#define GPSP_VERSION "v1.0.0"
#define GPSP_NETPACKET_VERSION "gpSP v1.0"
/* Default ROM buffer size in megabytes (this is a maximum value!) */
#ifndef ROM_BUFFER_SIZE
#define ROM_BUFFER_SIZE 32
#endif
/* Cache sizes and their config knobs */
#if defined(SMALL_TRANSLATION_CACHE)
#define ROM_TRANSLATION_CACHE_SIZE (1024 * 1024 * 2)
#define RAM_TRANSLATION_CACHE_SIZE (1024 * 384)
#else
#define ROM_TRANSLATION_CACHE_SIZE (1024 * 1024 * 10)
#define RAM_TRANSLATION_CACHE_SIZE (1024 * 512)
#endif
/* Should be an upperbound to the maximum number of bytes a single JIT'ed
instruction can take. STM/LDM are tipically the biggest ones */
#define TRANSLATION_CACHE_LIMIT_THRESHOLD (1024 * 2)
/* Hash table size for ROM trans cache lookups */
#define ROM_BRANCH_HASH_BITS 16
#define ROM_BRANCH_HASH_SIZE (1 << ROM_BRANCH_HASH_BITS)
/* RFU Multiplayer config, do not mess around too much with it */
#define MAX_RFU_NETPLAYERS 32
#endif