Monolithic Game Loop

while(1)
{
   input();
   simulate();
   render();
   sound();
}