Table of Contents

Runtime Library Notes

Directory Structure

  sd8516/                  project root
    runtime/
      crt0.sda             startup stub -- CALL main
      librt/               runtime functions
        divhi3.c
        modhi3.c
        divsi3.c
        muldi3.c
        ...
        softfloat/         the SF/DF families
      include/             freestanding headers (mine & what clang supplies)
      tests/               tests with checks

Prep Work