Software APIs
rom_ext.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_ROM_EXT_H_
6 #define OPENTITAN_SW_DEVICE_SILICON_CREATOR_ROM_EXT_ROM_EXT_H_
7 
8 #include <stdnoreturn.h>
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 noreturn void rom_ext_main(void);
15 
16 #ifdef __cplusplus
17 } // extern "C"
18 #endif
19 
20 #endif // OPENTITAN_SW_DEVICE_SILICON_CREATOR_ROM_EXT_ROM_EXT_H_