/* Copyright © 2019 Michal Schulz https://github.com/michalsc This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef _CONFIG_H #define _CONFIG_H #define CACHE_SET_COUNT 128 #define CACHE_WAY_COUNT 8 #define ARM_FEATURE_HAS_DIV 1 #define ARM_FEATURE_HAS_BITFLD 1 #define ARM_FEATURE_HAS_BITCNT 1 #define ARM_FEATURE_HAS_SWP 1 #define ARM_FEATURE_HAS_VDIV 1 #define ARM_FEATURE_HAS_SQRT 1 #ifndef SET_FEATURES_AT_RUNTIME #define SET_FEATURES_AT_RUNTIME 1 #endif #ifndef SET_OPTIONS_AT_RUNTIME #define SET_OPTIONS_AT_RUNTIME 0 #endif #define EMU68_ARM_CACHE_SIZE (4*1024*1024) #define EMU68_M68K_INSN_DEPTH 256 #define EMU68_HOST_BIG_ENDIAN 1 #define EMU68_HAS_SETEND 1 #define EMU68_DEF_BRANCH_TAKEN 0 #define EMU68_DEF_BRANCH_AUTO 1 #define EMU68_DEF_BRANCH_AUTO_RANGE 32 #define EMU68_DEF_BRANCH_BREAK 0 #define EMU68_INSN_COUNTER 1 #define EMU68_MAX_LOOP_COUNT 8 #define EMU68_BRANCH_INLINE_DISTANCE 8191 #define EMU68_USE_RETURN_STACK 1 #define EMU68_WEAK_CFLUSH 1 #define EMU68_WEAK_CFLUSH_LIMIT 500 #define EMU68_WEAK_CFLUSH_SLOW 0 #define EMU68_PC_REG_HISTORY 0 #define EMU68_CCR_SCAN_DEPTH 20 #define EMU68_HASHSIZE 65536 #define EMU68_HASHMASK (EMU68_HASHSIZE - 1) #define EMU68_HASHSHIFT 5 #ifdef PISTORM /* Speed for bitbang RS232... */ #define PISTORM_BITBANG_SPEED 921600 #ifdef PISTORM32 #define PISTORM_BITBANG_DELAY 59 #define PISTORM_CHIPSET_DELAY 12 #define PISTORM_CIA_DELAY 0 #define PISTORM_WRITE_BUFFER 0 #define PISTORM_WRITE_BUFFER_SIZE 32 #else #define PISTORM_BITBANG_DELAY 21 #define PISTORM_CHIPSET_DELAY 12 #define PISTORM_CIA_DELAY 0 #define PISTORM_WRITE_BUFFER 1 #define PISTORM_WRITE_BUFFER_SIZE 32 #endif #endif #ifndef VERSION_STRING_DATE #define VERSION_STRING_DATE "" #endif #define KERNEL_SYS_PAGES 16 #define KERNEL_JIT_PAGES 32 #define KERNEL_RSRVD_PAGES ((KERNEL_JIT_PAGES) + (KERNEL_SYS_PAGES)) #define EMU68_LOG_FETCHES 0 #define EMU68_LOG_USES 0 #endif /* _CONFIG_H */