Software APIs
manifest_def.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_CREATOR_LIB_MANIFEST_DEF_H_
6 #define OPENTITAN_SW_DEVICE_SILICON_CREATOR_LIB_MANIFEST_DEF_H_
7 
8 #include <stdint.h>
9 
11 #include "sw/device/silicon_creator/lib/manifest.h"
12 
13 /**
14  * Gets the manifest of the current boot stage.
15  */
17 const manifest_t *manifest_def_get(void);
18 
19 #endif // OPENTITAN_SW_DEVICE_SILICON_CREATOR_LIB_MANIFEST_DEF_H_