Remove useless debugging stuff

This commit is contained in:
copy 2017-03-21 17:50:10 -05:00
parent cba0826785
commit e28e81ab97
2 changed files with 0 additions and 9 deletions

View file

@ -1236,7 +1236,6 @@
$("step").onclick = debug.step.bind(debug);
$("run_until").onclick = debug.run_until.bind(debug);
$("debugger").onclick = debug.debugger.bind(debug);
$("dump_gdt").onclick = debug.dump_gdt_ldt.bind(debug);
$("dump_idt").onclick = debug.dump_idt.bind(debug);
$("dump_regs").onclick = debug.dump_regs.bind(debug);

View file

@ -85,14 +85,6 @@ CPU.prototype.debug_init = function()
debug.step = step;
debug.run_until = run_until;
debug.debugger = function()
{
if(DEBUG)
{
debugger;
}
}
/**
* @param {string=} msg
*/