summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sh/simsh4/startup/bspstart.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/sh/simsh4/startup/bspstart.c')
-rw-r--r--c/src/lib/libbsp/sh/simsh4/startup/bspstart.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/sh/simsh4/startup/bspstart.c b/c/src/lib/libbsp/sh/simsh4/startup/bspstart.c
index 5eaa59989a..c9d09020b2 100644
--- a/c/src/lib/libbsp/sh/simsh4/startup/bspstart.c
+++ b/c/src/lib/libbsp/sh/simsh4/startup/bspstart.c
@@ -31,6 +31,8 @@
#include <string.h>
+extern uint32_t bsp_clicks_per_second;
+
/*
* The original table from the application and our copy of it with
* some changes.
@@ -136,5 +138,5 @@ void bsp_start(void)
Cpu_table.interrupt_stack_size = CONFIGURE_INTERRUPT_STACK_MEMORY;
#endif
- Cpu_table.clicks_per_second = CPU_CLOCK_RATE_HZ ;
+ bsp_clicks_per_second = CPU_CLOCK_RATE_HZ;
}