From 092c340a2062fa98b7387fc5fd63578ddae7d0b6 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Wed, 15 Jul 2020 19:40:55 -0400 Subject: [1/4] Remove SH support and all archos targets This removes all code specific to SH targets Change-Id: I7980523785d2596e65c06430f4638eec74a06061 --- apps/plugins/fractals/mandelbrot_set.h | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'apps/plugins/fractals/mandelbrot_set.h') diff --git a/apps/plugins/fractals/mandelbrot_set.h b/apps/plugins/fractals/mandelbrot_set.h index 4eeb68461b..2814d24e58 100644 --- a/apps/plugins/fractals/mandelbrot_set.h +++ b/apps/plugins/fractals/mandelbrot_set.h @@ -24,18 +24,13 @@ #include "fractal_sets.h" /* CPU stuff */ -#if CONFIG_CPU == SH7034 -#include "cpu_sh7043.h" -#elif defined CPU_COLDFIRE +#if defined CPU_COLDFIRE #include "cpu_coldfire.h" #elif defined CPU_ARM #include "cpu_arm.h" #endif -#if CONFIG_CPU == SH7034 -#define MULS16_ASR10(a, b) muls16_asr10(a, b) -#define MULS32_ASR26(a, b) muls32_asr26(a, b) -#elif defined CPU_COLDFIRE +#if defined CPU_COLDFIRE /* Needs the EMAC initialised to fractional mode w/o rounding and saturation */ #define MULS32_INIT() coldfire_set_macsr(EMAC_FRACTIONAL) #define MULS16_ASR10(a, b) muls16_asr10(a, b) -- cgit v1.2.3