summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sh/shsim/startup
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 04:28:42 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 04:28:42 +0000
commita8a961f6056410208fdcae8ab521ebae41924a02 (patch)
tree66d108abb1b46ccc30f6cc0685bb138b6ab7dcc0 /c/src/lib/libbsp/sh/shsim/startup
parent2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-a8a961f6056410208fdcae8ab521ebae41924a02.tar.bz2
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* gdbsci/gdbsci.c, include/bsp.h, startup/bspstart.c: Convert to using c99 fixed size types.
Diffstat (limited to 'c/src/lib/libbsp/sh/shsim/startup')
-rw-r--r--c/src/lib/libbsp/sh/shsim/startup/bspstart.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/c/src/lib/libbsp/sh/shsim/startup/bspstart.c b/c/src/lib/libbsp/sh/shsim/startup/bspstart.c
index c5ea32aec7..02cb7c1892 100644
--- a/c/src/lib/libbsp/sh/shsim/startup/bspstart.c
+++ b/c/src/lib/libbsp/sh/shsim/startup/bspstart.c
@@ -45,7 +45,7 @@ char *rtems_progname;
*/
void bsp_postdriver_hook(void);
-void bsp_libc_init( void *, unsigned32, int );
+void bsp_libc_init( void *, uint32_t, int );
/*
* Function: bsp_pretasking_hook
@@ -101,8 +101,8 @@ void bsp_start( void )
BSP_Configuration.work_space_start = (void *) &WorkSpaceStart ;
BSP_Configuration.work_space_size =
- (unsigned32) &WorkSpaceEnd -
- (unsigned32) &WorkSpaceStart ;
+ (uint32_t) &WorkSpaceEnd -
+ (uint32_t) &WorkSpaceStart ;
/*
* initialize the CPU table for this BSP
@@ -113,8 +113,8 @@ void bsp_start( void )
_CPU_Interrupt_stack_high = &CPU_Interrupt_stack_high ;
Cpu_table.interrupt_stack_size =
- (unsigned32) (&CPU_Interrupt_stack_high) -
- (unsigned32) (&CPU_Interrupt_stack_low) ;
+ (uint32_t) (&CPU_Interrupt_stack_high) -
+ (uint32_t) (&CPU_Interrupt_stack_low) ;
#endif