Add some notes and links on libc implementations

This commit is contained in:
Imbus 2025-08-18 11:16:02 +02:00
parent ddddf903dc
commit 1aed6c0715

View file

@ -32,3 +32,13 @@ Toolchains:
| `mtime` | Machine Timer Register | Machine (via memory-mapped) | Used for timing and scheduling (not a CSR, but a memory-mapped register). |
| `mip` | Machine Interrupt Pending | Machine | Indicates pending interrupts. |
| `mie` | Machine Interrupt Enable | Machine | Controls which interrupts are enabled. |
# Notes
## Libc Implementations
[uClibc](https://uclibc.org/)
[musl libc](https://musl.libc.org/)
[dietlibc](http://www.fefe.de/dietlibc/)
[Comparison of C/POSIX standard library implementations for Linux](https://www.etalabs.net/compare_libcs.html) (by musl author)