summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/m68k/cpu_asm.S
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-07-31 16:48:38 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-07-31 16:48:38 +0000
commit97c73edae65fc1e81541532fd8344cbca0d8a6a5 (patch)
treea4e0dc196759c2985ee5644ca8060f91ade5d87c /cpukit/score/cpu/m68k/cpu_asm.S
parent2007-07-31 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-97c73edae65fc1e81541532fd8344cbca0d8a6a5.tar.bz2
Replace M68K_COLDFIRE_ARCH with __mcoldfire__.
Diffstat (limited to '')
-rw-r--r--cpukit/score/cpu/m68k/cpu_asm.S10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/score/cpu/m68k/cpu_asm.S b/cpukit/score/cpu/m68k/cpu_asm.S
index e53816dde3..772845f594 100644
--- a/cpukit/score/cpu/m68k/cpu_asm.S
+++ b/cpukit/score/cpu/m68k/cpu_asm.S
@@ -107,7 +107,7 @@ norst: frestore a0@+ | restore the fp state frame
* transfer control to the interrupt dispatcher.
*/
-#if ( M68K_COLDFIRE_ARCH == 1 )
+#if ( defined(__mcoldfire__) )
.set SR_OFFSET, 2 | Status register offset
.set PC_OFFSET, 4 | Program Counter offset
.set FVO_OFFSET, 0 | Format/vector offset
@@ -128,7 +128,7 @@ norst: frestore a0@+ | restore the fp state frame
SYM (_ISR_Handler):
addql #1,SYM (_Thread_Dispatch_disable_level) | disable multitasking
-#if ( M68K_COLDFIRE_ARCH == 0 )
+#if ( !defined(__mcoldfire__) )
moveml d0-d1/a0-a1,a7@- | save d0-d1,a0-a1
#else
lea a7@(-SAVED),a7
@@ -192,7 +192,7 @@ SYM (_ISR_Handler):
* see if it is _ISR_Handler. If it is we have the case of nesting interrupts
* without the dispatch level being incremented.
*/
- #if ( M68K_COLDFIRE_ARCH == 0 && M68K_MC68060_ARCH == 0 )
+ #if ( !defined(__mcoldfire__) && M68K_MC68060_ARCH == 0 )
cmpl #_ISR_Handler,a7@(SAVED+PC_OFFSET)
beq.b exit
#endif
@@ -218,7 +218,7 @@ bframe: clrl SYM (_ISR_Signals_to_thread_executing)
jsr SYM (_Thread_Dispatch) | Perform context switch
#endif
-#if ( M68K_COLDFIRE_ARCH == 0 )
+#if ( !defined(__mcoldfire__) )
exit: moveml a7@+,d0-d1/a0-a1 | restore d0-d1,a0-a1
#else
exit: moveml a7@,d0-d1/a0-a1 | restore d0-d1,a0-a1
@@ -247,7 +247,7 @@ exit: moveml a7@,d0-d1/a0-a1 | restore d0-d1,a0-a1
.global SYM (_ISR_Dispatch)
SYM (_ISR_Dispatch):
-#if ( M68K_COLDFIRE_ARCH == 0 )
+#if ( !defined(__mcoldfire__) )
movml d0-d1/a0-a1,a7@-
jsr SYM (_Thread_Dispatch)
movml a7@+,d0-d1/a0-a1