rewrite desc

This commit is contained in:
Yaossg 2025-04-11 17:56:35 +08:00
parent e104489ee4
commit ab04acdf53

10
boot.c
View file

@ -1,11 +1,11 @@
/* /*
* RVBTCC By Yaossg * RVBTCC By Yaossg
* A lightweight bootstrapping compiler in 2000 lines. * A lightweight bootstrapping compiler in only ~2000 lines.
* *
* It aims to demonstrate how to write a bootstrapping compiler in no time. * This project aims to demonstrate how to write a bootstrapping compiler in no time.
* Syntax is similar to C, output is RISC-V assembly. * Its syntax resembles C, and its output is RISC-V assembly.
* Only dependent on some glibc functions for I/O. * It relies solely on a few glibc functions for input/output operations.
* Purely for educational purposes. Do not use in production. * Designed purely for educational purposes and not intended for production use.
*/ */
// glibc dependency // glibc dependency