advent-of-code/2019/Scala/day09/intcode/opcode/Jump.scala

9 lines
318 B
Scala
Raw Normal View History

2019-12-09 11:08:57 +01:00
package day09.intcode.opcode
trait Jump extends OpCode
{
/** Checks if the condition for jumping is fulfilled, returns boolean and jump pointer */
def checkConditionAndJump(tape: Array[Long], relative: Long, param1: Long, param2: Long, param3: Long, mode1: Int, mode2: Int, mode3: Int): (Boolean, Int)
}