
public class Mult implements Instruction {

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

}
