/*
Press <CTRL-ALT-c> to break.

Rerun Program

Press <CTRL-ALT-d> to enter Dbg.
> Dr; //Dump Regs
> G2; //Cont program

Press <CTRL-ALT-d> to enter Dbg.
> Uf("DbgDemo");
> U(_RIP);

See Debugging
*/

U0 DbgDemo()
{
I64 i=0;
while (TRUE)
if (!(i++%2000000))
".";
}

DbgDemo;