advent-of-code/2019/Scala/day07/intcode/opcode/Jump.scala
2019-12-07 18:49:02 +01:00

9 lines
298 B
Scala

package day07.intcode.opcode
trait Jump extends OpCode
{
/** Checks if the condition for jumping is fulfilled, returns boolean and jump pointer */
def checkConditionAndJump(tape: Array[Int], param1: Int, param2: Int, param3: Int, mode1: Int, mode2: Int, mode3: Int): (Boolean, Int)
}