removed comment

This commit is contained in:
Darkress
2023-06-17 23:34:20 +02:00
parent 9319a14d88
commit 6772f448ba

View File

@@ -8,11 +8,6 @@ import de.darkress.pic16f84sim.microcontroller.Timer;
public class Cli
{
public static void showRegisters() {
/*
System.out.println(Integer.toHexString(Memory.workingRegister) + " " + Cycles.getCycles()); // WReg ProgramCycles
System.out.println(Integer.toHexString(Memory.getOption()) + " " + Integer.toHexString(Memory.getRegister(0x03))); // Option Status
System.out.println(Integer.toHexString(Memory.getPCLATH()) + " " + Integer.toHexString(Memory.getPCL()) + "\n"); // PCLATH PCL
*/
printf(Memory.workingRegister, "W-Reg", true);
printf(Cycles.getCycles(), "Cycles", false);
System.out.printf("%n");