Software APIs
imm_section.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_ROM_EXT_IMM_SECTION_IMM_SECTION_H_
6 #define OPENTITAN_SW_DEVICE_SILICON_CREATOR_ROM_EXT_IMM_SECTION_IMM_SECTION_H_
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 void imm_section_main(void);
13 
14 #ifdef __cplusplus
15 } // extern "C"
16 #endif
17 
18 #endif // OPENTITAN_SW_DEVICE_SILICON_CREATOR_ROM_EXT_IMM_SECTION_IMM_SECTION_H_