From ce34e879e348cecd4e21329be5974cc4162fa6c4 Mon Sep 17 00:00:00 2001 From: neonloop Date: Wed, 9 Feb 2022 07:15:14 +0000 Subject: Adds experimental ARM dynarec Supports ARMv5 and higher, enable with USE_DYNAREC Makefile variable --- libretro_core_options.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'libretro_core_options.h') diff --git a/libretro_core_options.h b/libretro_core_options.h index 409590c..154dc74 100644 --- a/libretro_core_options.h +++ b/libretro_core_options.h @@ -221,6 +221,22 @@ struct retro_core_option_v2_definition option_defs_us[] = { }, "disabled" }, +#ifdef USE_DYNAREC + { + "snes9x_2005_dynarec", + "Dynamic Recompiler", + NULL, + "Enables experimental dynamic recompiler.", + NULL, + NULL, + { + { "disabled", NULL }, + { "enabled", NULL }, + { NULL, NULL }, + }, + "disabled" + }, +#endif { NULL, NULL, NULL, NULL, NULL, NULL, {{0}}, NULL }, }; -- cgit v1.2.3