1
0
Fork 0

cleanup unfinished and unworking core stub

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4118
This commit is contained in:
Peter Veenstra 2018-06-13 09:26:06 +00:00
parent e20cc10750
commit 89eddef2f7

View file

@ -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