
public class Goto implements Instruction {
	int target;
	
	public Goto(int target) {
		super();
		this.target = target;
	}

	@Override
	public void execute(Kellermaschine kellermaschine) {
		kellermaschine.pc=target;

	}

}
