summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/m68k
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-25 18:46:47 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-25 18:46:47 +0000
commitc80add4623635501a1678d9389980e1864dfa10f (patch)
tree7340d7dd5d0af3ed8b0329a035dc43c3c22b6636 /cpukit/score/cpu/m68k
parentAdded group and example around tree pictures in html. (diff)
downloadrtems-c80add4623635501a1678d9389980e1864dfa10f.tar.bz2
m68k software interrupt stack support from Chris Johns and Eric Norum.
Diffstat (limited to 'cpukit/score/cpu/m68k')
-rw-r--r--cpukit/score/cpu/m68k/cpu.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/cpukit/score/cpu/m68k/cpu.c b/cpukit/score/cpu/m68k/cpu.c
index a20a83fc04..e714933350 100644
--- a/cpukit/score/cpu/m68k/cpu.c
+++ b/cpukit/score/cpu/m68k/cpu.c
@@ -147,10 +147,6 @@ void _CPU_Install_interrupt_stack( void )
void *isp = _CPU_Interrupt_stack_high;
asm volatile ( "movec %0,%%isp" : "=r" (isp) : "0" (isp) );
-#else
-#warning "PLEASE IMPLEMENT ME... There is NO dedicated interrupt stack"
-#warning "on CPUs without a dedicated hardware interrupt stack!!!"
-#warning "INTERRUPTS RUN ON A TASK STACK!!!"
#endif
}