Basic read-only cli #35
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user