mirror of https://github.com/minexew/Shrine.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
381 B
26 lines
381 B
/* |
|
Press <CTRL-ALT-c> to break. |
|
|
|
Rerun Program |
|
|
|
Press <CTRL-ALT-d> to enter Dbg. |
|
> $LK,"Dr",A="MN:Dr"$; //Dump Regs |
|
> $LK,"G2",A="MN:G2"$; //Cont program |
|
|
|
Press <CTRL-ALT-d> to enter Dbg. |
|
> $LK,"Uf",A="MN:Uf"$("DbgDemo"); |
|
> $LK,"U",A="MN:U"$(_RIP); |
|
|
|
See $LK,"Debugging",A="HI:Debugging"$ |
|
*/ |
|
|
|
U0 DbgDemo() |
|
{ |
|
I64 i=0; |
|
while (TRUE) |
|
if (!(i++%2000000)) |
|
"."; |
|
} |
|
|
|
DbgDemo; |
|
|
|
|