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
00_assignment.c
00001 #include <stdlib.h>
00002 
00003 int a;
00004 a = 42;
00005 printf("%d\n", a);
00006 
00007 int b = 64;
00008 printf("%d\n", b);
00009 
00010 int c = 12, d = 34;
00011 printf("%d, %d\n", c, d);
00012 
00013 void main() {}
 All Data Structures