advent-of-code/2019/Scala/day05/opcode/Jump.scala
2019-12-06 22:45:29 +01:00

9 lines
290 B
Scala

package day05.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)
}