summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/cpu/sh/rtems/score/sh.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/score/cpu/sh/rtems/score/sh.h')
-rw-r--r--c/src/exec/score/cpu/sh/rtems/score/sh.h23
1 files changed, 9 insertions, 14 deletions
diff --git a/c/src/exec/score/cpu/sh/rtems/score/sh.h b/c/src/exec/score/cpu/sh/rtems/score/sh.h
index 45228c5fe0..f09d1d66c2 100644
--- a/c/src/exec/score/cpu/sh/rtems/score/sh.h
+++ b/c/src/exec/score/cpu/sh/rtems/score/sh.h
@@ -40,29 +40,24 @@ extern "C" {
*/
#if defined(sh7032)
-
-#define CPU_MODEL_NAME "SH 7032"
+#define CPU_MODEL_NAME "SH7032"
#define SH_HAS_FPU 0
-/*
- * If the following macro is set to 0 there will be no software irq stack
- */
-#define SH_HAS_SEPARATE_STACKS 1
-
#elif defined (sh7045)
-
-#define CPU_MODEL_NAME "SH 7045"
+#define CPU_MODEL_NAME "SH7045"
#define SH_HAS_FPU 0
+#else
+#error "Unsupported CPU Model"
+
+#endif
+
/*
* If the following macro is set to 0 there will be no software irq stack
*/
-#define SH_HAS_SEPARATE_STACKS 1
-#else
-
-#error "Unsupported CPU Model"
-
+#ifndef SH_HAS_SEPARATE_STACKS
+#define SH_HAS_SEPARATE_STACKS 1
#endif
/*