NEORV32 - Software Framework Documentation
Loading...
Searching...
No Matches
neorv32_rte.h
Go to the documentation of this file.
1// #################################################################################################
2// # << NEORV32: neorv32_rte.h - NEORV32 Runtime Environment >> #
3// # ********************************************************************************************* #
4// # BSD 3-Clause License #
5// # #
6// # Copyright (c) 2024, Stephan Nolting. All rights reserved. #
7// # #
8// # Redistribution and use in source and binary forms, with or without modification, are #
9// # permitted provided that the following conditions are met: #
10// # #
11// # 1. Redistributions of source code must retain the above copyright notice, this list of #
12// # conditions and the following disclaimer. #
13// # #
14// # 2. Redistributions in binary form must reproduce the above copyright notice, this list of #
15// # conditions and the following disclaimer in the documentation and/or other materials #
16// # provided with the distribution. #
17// # #
18// # 3. Neither the name of the copyright holder nor the names of its contributors may be used to #
19// # endorse or promote products derived from this software without specific prior written #
20// # permission. #
21// # #
22// # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS #
23// # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF #
24// # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE #
25// # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, #
26// # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE #
27// # GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED #
28// # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING #
29// # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED #
30// # OF THE POSSIBILITY OF SUCH DAMAGE. #
31// # ********************************************************************************************* #
32// # The NEORV32 Processor - https://github.com/stnolting/neorv32 (c) Stephan Nolting #
33// #################################################################################################
34
35
36/**********************************************************************/
41#ifndef neorv32_rte_h
42#define neorv32_rte_h
43
44
45/**********************************************************************/
48#define NEORV32_RTE_NUM_TRAPS 29
49
50
51/**********************************************************************/
85
86
87/**********************************************************************/
91void neorv32_rte_setup(void);
92int neorv32_rte_handler_install(int id, void (*handler)(void));
94uint32_t neorv32_rte_context_get(int x);
95void neorv32_rte_context_put(int x, uint32_t data);
96void neorv32_rte_print_info(void);
97
101void neorv32_rte_print_logo(void);
106#endif // neorv32_rte_h
void neorv32_rte_print_hw_config(void)
Definition neorv32_rte.c:476
int neorv32_rte_handler_uninstall(int id)
Definition neorv32_rte.c:112
void neorv32_rte_print_logo(void)
Definition neorv32_rte.c:806
int neorv32_rte_handler_install(int id, void(*handler)(void))
Definition neorv32_rte.c:92
void neorv32_rte_setup(void)
Definition neorv32_rte.c:65
uint32_t neorv32_rte_context_get(int x)
Definition neorv32_rte.c:287
void neorv32_rte_print_info(void)
Definition neorv32_rte.c:410
void neorv32_rte_print_credits(void)
Definition neorv32_rte.c:793
void neorv32_rte_print_hw_version(void)
Definition neorv32_rte.c:760
void neorv32_rte_print_license(void)
Definition neorv32_rte.c:848
NEORV32_RTE_TRAP_enum
Definition neorv32_rte.h:54
@ RTE_TRAP_FIRQ_5
Definition neorv32_rte.h:73
@ RTE_TRAP_UENV_CALL
Definition neorv32_rte.h:63
@ RTE_TRAP_FIRQ_15
Definition neorv32_rte.h:83
@ RTE_TRAP_FIRQ_2
Definition neorv32_rte.h:70
@ RTE_TRAP_FIRQ_9
Definition neorv32_rte.h:77
@ RTE_TRAP_FIRQ_8
Definition neorv32_rte.h:76
@ RTE_TRAP_BREAKPOINT
Definition neorv32_rte.h:58
@ RTE_TRAP_I_ILLEGAL
Definition neorv32_rte.h:56
@ RTE_TRAP_FIRQ_3
Definition neorv32_rte.h:71
@ RTE_TRAP_FIRQ_13
Definition neorv32_rte.h:81
@ RTE_TRAP_FIRQ_7
Definition neorv32_rte.h:75
@ RTE_TRAP_S_MISALIGNED
Definition neorv32_rte.h:61
@ RTE_TRAP_FIRQ_4
Definition neorv32_rte.h:72
@ RTE_TRAP_L_MISALIGNED
Definition neorv32_rte.h:59
@ RTE_TRAP_I_ACCESS
Definition neorv32_rte.h:55
@ RTE_TRAP_L_ACCESS
Definition neorv32_rte.h:60
@ RTE_TRAP_S_ACCESS
Definition neorv32_rte.h:62
@ RTE_TRAP_FIRQ_14
Definition neorv32_rte.h:82
@ RTE_TRAP_FIRQ_1
Definition neorv32_rte.h:69
@ RTE_TRAP_FIRQ_0
Definition neorv32_rte.h:68
@ RTE_TRAP_FIRQ_11
Definition neorv32_rte.h:79
@ RTE_TRAP_FIRQ_6
Definition neorv32_rte.h:74
@ RTE_TRAP_MTI
Definition neorv32_rte.h:66
@ RTE_TRAP_MEI
Definition neorv32_rte.h:67
@ RTE_TRAP_MSI
Definition neorv32_rte.h:65
@ RTE_TRAP_FIRQ_10
Definition neorv32_rte.h:78
@ RTE_TRAP_MENV_CALL
Definition neorv32_rte.h:64
@ RTE_TRAP_FIRQ_12
Definition neorv32_rte.h:80
@ RTE_TRAP_I_MISALIGNED
Definition neorv32_rte.h:57
void neorv32_rte_context_put(int x, uint32_t data)
Definition neorv32_rte.c:306