From 3904a421d47504bc559d0b648504a5e5a16af705 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Fri, 14 May 2004 08:25:30 +0000 Subject: [PATCH] Use assembly optimizations on x86 for adde/addo/etc. emulation --- SheepShaver/src/Unix/sysdeps.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SheepShaver/src/Unix/sysdeps.h b/SheepShaver/src/Unix/sysdeps.h index 194455a7..8f59fd8d 100644 --- a/SheepShaver/src/Unix/sysdeps.h +++ b/SheepShaver/src/Unix/sysdeps.h @@ -88,6 +88,9 @@ #define PPC_PROFILE_COMPILE_TIME 0 #define PPC_PROFILE_GENERIC_CALLS 0 #define KPX_MAX_CPUS 1 +#if defined(__i386__) +#define DYNGEN_ASM_OPTS 1 +#endif #else // Mac ROM is write protected #define ROM_IS_WRITE_PROTECTED 1