
public class Sub implements Instruction {

	@Override
	public void execute(Kellermaschine kellermaschine) {
		int op1 = kellermaschine.keller.pop();
		int op2 = kellermaschine.keller.pop();
		kellermaschine.keller.push(op2-op1);
		kellermaschine.pc=kellermaschine.pc+1;

	}

}
