Add full compiler toolchain, libc, examples and reference docs

First substantive commit: the entire Sprinter C compiler tree on top of
the bare README+gitignore initial commit.

What's in here:
  bin/sprinter-cc        — driver script invoking SDCC + linker + mkexe
  libc/                  — Sprinter-specific libc layer over ESTEX/BIOS
                           (conio, gfx, io, mem, stdio + headers)
  runtime/               — crt0 variants (default/small/banked/minimal)
                           + heap + bank trampolines
  toolchain/             — mkexe (SprintEXE packer, C + tests)
  examples/              — 30 demo programs (gfx, file I/O, env, time, …)
  lib/Makefile           — builds the libc archive (sprinter.lib)
  docs/                  — converted Sprinter manuals + asm reference samples
  third_party/           — solid-c reference compiler dump + sdcc setup script
  release_docs/          — packaging / release notes

gitignore overhaul:
  • Drop dangerous blanket patterns: *.asm (would hide docs/samples/*.asm)
    and *.exe (case-insensitive match was hiding third_party/solid-c/*.EXE
    on macOS APFS).  Replaced with examples/*/*.{asm,exe,…} and lib/*.lib.
  • Restore tracking of toolchain/mkexe/tests/{one,big}.bin — those are
    INPUT fixtures, not build outputs.
  • Collapse the duplicated SDCC/C/Sdcc sections into one section per
    concern (build outputs / vendored / OS-junk).
  • Add .sprinter-cc-*/, build/ (catches lib/build/ too), .claude/.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-06-03 16:13:21 +03:00
parent f542608b3f
commit c71e249a4e
404 changed files with 75155 additions and 58 deletions
+22
View File
@@ -0,0 +1,22 @@
ã­ªæ¨ï ferror ¯à®¢¥àï¥â ®è¨¡ª¨ ç⥭¨ï ¨ § ¯¨á¨ § ¤ ­­®£® ä ©« .
ਠ¢®§­¨ª­®¢¥­¨¨ ®è¨¡ª¨, ¨­¤¨ª â®à ®è¨¡ª¨ ä ©«  fp ®áâ ¥âáï ãáâ -
­®¢«¥­­ë¬ ¤® â¥å ¯®à, ¯®ª  ä ©« ­¥ § ªà®¥âáï ¨«¨ ¡ã¤ã⠢맢 ­ë
ä㭪樨 rewind ¨«¨ clearerr.
á«ãç ¥ ®¡­ à㦥­¨ï ®è¨¡ª¨ ¢ ä ©«¥, äã­ªæ¨ï ferror ¢®§¢à é ¥â ­¥­ã-
«¥¢®¥ §­ ç¥­¨¥. ®§¢à é ¥¬®¥ §­ ç¥­¨¥ 0 ᢨ¤¥â¥«ìáâ¢ã¥â ®¡ ®âáãâá⢨¨
®è¨¡ª¨.
#include <stdio.h>
FILE *fp;
char *string;
/* á«¥¤ãî騩 ¯à¨¬¥à ¢¢®¤¨â ¤ ­­ë¥ ¢ ä ©« ¨ ¯à®¢¥àï¥â,
­¥ ¢®§­¨ª«  «¨ ®è¨¡ª  ¯à¨ § ¯¨á¨. ¥à¥¤ § ¯¨áìî
¤ ­­ëå ¢ ä ©«, ®­ ¤®«¦¥­ ¡ëâì ¯à¥¤¢ à¨â¥«ì­® ®âªàëâ. */
fprintf(fp, "%s\n", string);
if(ferror(fp))
{
fprintf(stderr, "Write error\n");
clearerr(fp);
}