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 int a; 00004 char b; 00005 00006 a = 0; 00007 while (a < 2) 00008 { 00009 printf("%d", a++); 00010 break; 00011 00012 b = 'A'; 00013 while (b < 'C') 00014 { 00015 printf("%c", b++); 00016 } 00017 printf("e"); 00018 } 00019 printf("\n"); 00020 00021 int main() 00022 { 00023 return 0; 00024 }