Add more tests & examples

This commit is contained in:
Ziyao 2022-04-15 09:26:23 +08:00
parent 8928c08144
commit 1311f3b3fb
3 changed files with 1248 additions and 0 deletions

1
tests/ldscript.ld Normal file
View File

@ -0,0 +1 @@
GROUP ( /home/ziyao/Program/musl-tcc/lib/libc.a /usr/local/lib/tcc/libtcc1.a )

1240
tests/pico.c Normal file

File diff suppressed because it is too large Load Diff

7
tests/printf.c Normal file
View File

@ -0,0 +1,7 @@
#include<stdio.h>
int main(void)
{
printf("%d\nHello World\n",1);
return 0;
}