init commit

This commit is contained in:
2024-03-19 01:05:51 +08:00
commit 199bbf2628
393 changed files with 34883 additions and 0 deletions

10
archive/other/test.c Normal file
View File

@@ -0,0 +1,10 @@
int main()
{
int a = 0;
for (int i = 0; i < 3; i++)
{
a += i;
}
}
//gcc -g -c test.c
//objdump -d -M intel -S test.o