summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/moxie/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/cpu/moxie/cpu.c')
-rw-r--r--cpukit/score/cpu/moxie/cpu.c22
1 files changed, 5 insertions, 17 deletions
diff --git a/cpukit/score/cpu/moxie/cpu.c b/cpukit/score/cpu/moxie/cpu.c
index b5e2a2b305..e0a14b0cd6 100644
--- a/cpukit/score/cpu/moxie/cpu.c
+++ b/cpukit/score/cpu/moxie/cpu.c
@@ -27,8 +27,6 @@
*
* INPUT PARAMETERS: NONE
*/
-
-
void _CPU_Initialize(void)
{
/*
@@ -41,23 +39,19 @@ void _CPU_Initialize(void)
/* FP context initialization support goes here */
}
-/*PAGE
- *
+/*
* _CPU_ISR_Get_level
*
* This routine returns the current interrupt level.
*/
-
uint32_t _CPU_ISR_Get_level( void )
{
return 0;
}
-/*PAGE
- *
+/*
* _CPU_ISR_install_raw_handler
*/
-
void _CPU_ISR_install_raw_handler(
uint32_t vector,
proc_ptr new_handler,
@@ -72,8 +66,7 @@ void _CPU_ISR_install_raw_handler(
/* H8BD_Install_IRQ(vector,new_handler,old_handler); */
}
-/*PAGE
- *
+/*
* _CPU_ISR_install_vector
*
* This kernel routine installs the RTEMS handler for the
@@ -87,7 +80,6 @@ void _CPU_ISR_install_raw_handler(
* Output parameters: NONE
*
*/
-
void _CPU_ISR_install_vector(
uint32_t vector,
proc_ptr new_handler,
@@ -112,17 +104,14 @@ void _CPU_ISR_install_vector(
_ISR_Vector_table[ vector ] = new_handler;
}
-/*PAGE
- *
+/*
* _CPU_Install_interrupt_stack
*/
-
void _CPU_Install_interrupt_stack( void )
{
}
-/*PAGE
- *
+/*
* _CPU_Thread_Idle_body
*
* NOTES:
@@ -137,7 +126,6 @@ void _CPU_Install_interrupt_stack( void )
* also be a problem with other on-chip peripherals. So use this
* hook with caution.
*/
-
#if 0
void *_CPU_Thread_Idle_body( uintptr_t ignored )
{