├── .gitignore ├── AUTHORS ├── LICENSE ├── Makefile ├── README.md ├── STATS.md ├── TODO.md ├── include └── rt0 │ ├── rt0.h │ └── syscall.h ├── src └── lib │ ├── 00_start.c │ ├── _exit.c │ └── syscall.c └── t ├── _end.c ├── argc.c ├── argv.c ├── envp.c ├── hello.c ├── null.c ├── sbrk.c ├── sys0.c ├── sys1.c ├── sys2.c ├── sys3.c ├── test.c └── threads.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/README.md -------------------------------------------------------------------------------- /STATS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/STATS.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/TODO.md -------------------------------------------------------------------------------- /include/rt0/rt0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/include/rt0/rt0.h -------------------------------------------------------------------------------- /include/rt0/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/include/rt0/syscall.h -------------------------------------------------------------------------------- /src/lib/00_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/src/lib/00_start.c -------------------------------------------------------------------------------- /src/lib/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/src/lib/_exit.c -------------------------------------------------------------------------------- /src/lib/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/src/lib/syscall.c -------------------------------------------------------------------------------- /t/_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/t/_end.c -------------------------------------------------------------------------------- /t/argc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/t/argc.c -------------------------------------------------------------------------------- /t/argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/t/argv.c -------------------------------------------------------------------------------- /t/envp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/t/envp.c -------------------------------------------------------------------------------- /t/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/t/hello.c -------------------------------------------------------------------------------- /t/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/t/null.c -------------------------------------------------------------------------------- /t/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/t/sbrk.c -------------------------------------------------------------------------------- /t/sys0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/t/sys0.c -------------------------------------------------------------------------------- /t/sys1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/t/sys1.c -------------------------------------------------------------------------------- /t/sys2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/t/sys2.c -------------------------------------------------------------------------------- /t/sys3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/t/sys3.c -------------------------------------------------------------------------------- /t/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/t/test.c -------------------------------------------------------------------------------- /t/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpsantil/rt0/HEAD/t/threads.c --------------------------------------------------------------------------------