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
12_hashdefine.c
00001 #include <stdio.h>
00002 
00003 #define FRED 12
00004 #define BLOGGS(x) (12*(x))
00005 
00006 printf("%d\n", FRED);
00007 printf("%d, %d, %d\n", BLOGGS(1), BLOGGS(2), BLOGGS(3));
00008 
00009 
00010 void main() {}
 All Data Structures