[sw] rename library functions (#467)

* [sw/lib] rename library functions (UART + RTE)

* [sw/example] change library function calls

* [sw/lib] change library function calls

* [sw/lib] add backwards compatibility layer

* [docs] minor edits/fixes

* [sw/lib] comment edits

* update bootloader
This commit is contained in:
Stephan 2022-12-28 13:02:51 +01:00 committed by GitHub
parent 5a0d9dc889
commit 74c0817a1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 340 additions and 240 deletions

View file

@ -124,7 +124,7 @@ int main() {
// check if Zfinx extension is implemented at all
if ((neorv32_cpu_csr_read(CSR_MXISA) & (1<<CSR_MXISA_ZFINX)) == 0) {
neorv32_uart0_print("Error! <Zfinx> extension not synthesized!\n");
neorv32_uart0_puts("Error! <Zfinx> extension not synthesized!\n");
return 1;
}