47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
|
/*
|
||
|
* Copyright (c) 2016 Jean-Paul Etienne <fractalclone@gmail.com>
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* @brief Full C support initialization
|
||
|
*
|
||
|
*
|
||
|
* Initialization of full C support: zero the .bss and call _Cstart().
|
||
|
*
|
||
|
* Stack is available in this module, but not the global data/bss until their
|
||
|
* initialization is performed.
|
||
|
*/
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <toolchain.h>
|
||
|
#include <nano_internal.h>
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @brief Prepare to and run C code
|
||
|
*
|
||
|
* This routine prepares for the execution of and runs C code.
|
||
|
*
|
||
|
* @return N/A
|
||
|
*/
|
||
|
|
||
|
void _PrepC(void)
|
||
|
{
|
||
|
_bss_zero();
|
||
|
_Cstart();
|
||
|
CODE_UNREACHABLE;
|
||
|
}
|