com.github.anilople.javajvm.instructions.comparisons.ifinstructions.IF_ICMPGT Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javajvm Show documentation
Show all versions of javajvm Show documentation
Use Java to Implement JVM
The newest version!
package com.github.anilople.javajvm.instructions.comparisons.ifinstructions;
import com.github.anilople.javajvm.instructions.Instruction;
import com.github.anilople.javajvm.runtimedataarea.Frame;
public class IF_ICMPGT extends IF implements Instruction {
@Override
public void execute(Frame frame) {
this.execute(frame, (value1, value2) -> value1 > value2);
}
}