UICMP

const val UICMP: Byte = 120(source)

Compare two unsigned ints

Place the result on the stack (as a byte):

  • 0 (00000000) if the first value is less than the second

  • 1 (00000001) if the first value is equal to the second

  • 2 (00000010) if the first value is greater than the second

Value: 0x78

Specification