You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
riscemu/libc
Anton Lydike 1c2dad94e2 main: major overhaul of how __main__ works 1 year ago
..
README.md main: major overhaul of how __main__ works 1 year ago
crt0.s runtime: move start of libc into separate folder 1 year ago
stdlib.s main: major overhaul of how __main__ works 1 year ago
string.s libc: add tests and fix a bunch of bugs in string.s 1 year ago

README.md

RiscEmu LibC

This is a very basic implementation of libc in risc-v assembly, meant specifically for the riscemu emulator.

This is currently very incomplete, only a handful of methods are implemented, and most of them pretty basic.

Contents:

stdlib.s

Basic implementations of:

  • malloc/free (that leaks memory)
  • rand/srand (using xorshift)
  • exit/atexit (supporting up to 8 exit handlers)

string.s

Somewhat nice implementations of:

  • strlen
  • strncpy
  • strcpy
  • memchr
  • memset (very basic byte-by-byte copy)

Correctness:

This library is only lightly tested, so be careful and report bugs when you find them!