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
|
00001 #include <stdio.h> 00002 00003 printf("%d\n", '\1'); 00004 printf("%d\n", '\10'); 00005 printf("%d\n", '\100'); 00006 printf("%d\n", '\x01'); 00007 printf("%d\n", '\x0e'); 00008 printf("%d\n", '\x10'); 00009 printf("%d\n", '\x40'); 00010 printf("test \x407\n"); 00011 00012 00013 void main() {}