mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-23 21:57:33 -04:00
added function to print project credits
This commit is contained in:
parent
f8dd93f849
commit
dfdb1544ed
2 changed files with 15 additions and 0 deletions
|
@ -46,6 +46,8 @@
|
|||
void neorv32_rte_enable_debug_mode(void);
|
||||
int neorv32_rte_exception_install(uint8_t exc_id, void (*handler)(void));
|
||||
int neorv32_rte_exception_uninstall(uint8_t exc_id);
|
||||
|
||||
void neorv32_rte_print_hw_config(void);
|
||||
void neorv32_rte_print_credits(void);
|
||||
|
||||
#endif // neorv32_rte_h
|
||||
|
|
|
@ -373,3 +373,16 @@ static void __neorv32_rte_print_hw_version(void) {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**********************************************************************//**
|
||||
* NEORV32 runtime environment: Print project credits
|
||||
**************************************************************************/
|
||||
void neorv32_rte_print_credits(void) {
|
||||
|
||||
neorv32_uart_print("\n\nThe NEORV32 Processor Project\n"
|
||||
"by Stephan Nolting\n"
|
||||
"https://github.com/stnolting/neorv32\n"
|
||||
"made in Hannover, Germany\n\n");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue