tcc-riscv32
tcc-riscv32 copied to clipboard
Port TCC (Tiny C Compiler) to support Risc-V 32 targets (specifically for the ESP32-C3). This project is a work-in-progress and is not currently functional. The goal is to push developments to upstrea...
## General Issues - [ ] Make tcc tests pass - [ ] Bootstrap tcc build - [ ] Generate PIE Code - [ ] PCREL code generation - [...
I have written a simple startup sequence for a simple libc: ``` extern void exit(long); extern void write(int, const void *, unsigned); static inline unsigned strlen(const char *str) { unsigned...