Xv6 with picoc & Linkage editor  v1.0
The project delineate mutual cohesion between c library, linkage editor ( linker), interpreter and operating system by porting the same on xv6 kernel
 All Data Structures
04_for.c
00001 #include <stdio.h>
00002 
00003 int Count;
00004 
00005 for (Count = 1; Count <= 10; Count++)
00006 {
00007     printf("%d\n", Count);
00008 }
00009 
00010 void main() {}
 All Data Structures