Software APIs
sw
device
silicon_owner
bare_metal
bare_metal.h
1
// Copyright lowRISC contributors (OpenTitan project).
2
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3
// SPDX-License-Identifier: Apache-2.0
4
5
#ifndef OPENTITAN_SW_DEVICE_SILICON_OWNER_BARE_METAL_BARE_METAL_H_
6
#define OPENTITAN_SW_DEVICE_SILICON_OWNER_BARE_METAL_BARE_METAL_H_
7
8
#include <
stdnoreturn.h
>
9
10
#ifdef __cplusplus
11
extern
"C"
{
12
#endif
13
14
noreturn
void
bare_metal_main(
void
);
15
16
#ifdef __cplusplus
17
}
// extern "C"
18
#endif
19
20
#endif
// OPENTITAN_SW_DEVICE_SILICON_OWNER_BARE_METAL_BARE_METAL_H_
Return to
OpenTitan Documentation