From 89eddef2f71bff3fb37dac06e699e92111a3dd65 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Wed, 13 Jun 2018 09:26:06 +0000 Subject: [PATCH] cleanup unfinished and unworking core stub Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4118 --- src/cpu/core_dynrec.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/cpu/core_dynrec.cpp b/src/cpu/core_dynrec.cpp index 22b9cff1..e0e32be6 100644 --- a/src/cpu/core_dynrec.cpp +++ b/src/cpu/core_dynrec.cpp @@ -138,7 +138,6 @@ static struct { #define MIPSEL 0x03 #define ARMV4LE 0x04 #define ARMV7LE 0x05 -#define POWERPC 0x04 #define ARMV8LE 0x07 #if C_TARGETCPU == X86_64 @@ -149,8 +148,6 @@ static struct { #include "core_dynrec/risc_mipsel32.h" #elif (C_TARGETCPU == ARMV4LE) || (C_TARGETCPU == ARMV7LE) #include "core_dynrec/risc_armv4le.h" -#elif C_TARGETCPU == POWERPC -#include "core_dynrec/risc_ppc.h" #elif C_TARGETCPU == ARMV8LE #include "core_dynrec/risc_armv8le.h" #endif