From fc8edd47fabc7695be7ddb7a326cb395133d3fad Mon Sep 17 00:00:00 2001 From: OBattler Date: Sat, 7 Oct 2023 22:55:44 +0200 Subject: [PATCH] Did the same in mem/mmu_2386.c. --- src/mem/mmu_2386.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/mem/mmu_2386.c b/src/mem/mmu_2386.c index 6e7236518..21c62b833 100644 --- a/src/mem/mmu_2386.c +++ b/src/mem/mmu_2386.c @@ -38,22 +38,6 @@ #include <86box/plat.h> #include <86box/rom.h> #include <86box/gdbstub.h> -#ifdef USE_DYNAREC -# include "codegen_public.h" -#else -# ifdef USE_NEW_DYNAREC -# define PAGE_MASK_SHIFT 6 -# else -# define PAGE_MASK_INDEX_MASK 3 -# define PAGE_MASK_INDEX_SHIFT 10 -# define PAGE_MASK_SHIFT 4 -# endif -# define PAGE_MASK_MASK 63 -#endif -#if (!defined(USE_DYNAREC) && defined(USE_NEW_DYNAREC)) -# define BLOCK_PC_INVALID 0xffffffff -# define BLOCK_INVALID 0 -#endif uint8_t mem_readb_map(uint32_t addr)