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
09_do_while.c
00001 #include <stdio.h>
00002 
00003 int a;
00004 int p;
00005 int t;
00006 
00007 a = 1;
00008 p = 0;
00009 t = 0;
00010 
00011 do
00012 {
00013     printf("%d\n", a);
00014     t = a;
00015     a = t + p;
00016     p = t;
00017 } while (a < 100);
00018 
00019 
00020 void main() {}
 All Data Structures