Files
pic16f84-sim/de/darkress/pic16f84sim/commands/Nop.java
2023-05-31 20:24:57 +02:00

15 lines
305 B
Java

package de.darkress.pic16f84sim.commands;
import de.darkress.pic16f84sim.microcontroller.ProgramCounter;
public class Nop extends LiteralCommandUtils implements Command
{
@Override
public void execute()
{
// Do nothing, just increment the PC
ProgramCounter.incPC();
}
}