gblib src added

git-svn-id: svn://kolibrios.org@1879 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Albom
2011-02-18 17:46:37 +00:00
parent 0e98f2ea01
commit 2118401afb
15 changed files with 1179 additions and 0 deletions
@@ -0,0 +1,12 @@
del *.o
del example.kex
fasm asm_code.asm start.o
gcc -c example.c
gcc -c system/kolibri.c
gcc -c system/stdlib.c
gcc -c system/string.c
ld -nostdlib -T kolibri.ld -o example.kex start.o kolibri.o stdlib.o string.o example.o
objcopy example.kex -O binary
kpack example.kex
del *.o
pause