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

Rerun Program

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

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

See Debugging
*/

U0 DebugDemo()
{
        I64 i = 0;

        while (TRUE)
                if (!(i++ % 2000000))
                        ".";
}

DebugDemo;