advent-of-code/2019/Scala/day09/intcode/opcode/Input.scala
2019-12-09 11:08:57 +01:00

8 lines
221 B
Scala

package day09.intcode.opcode
trait Input extends OpCode
{
/** Executes instruction for given parameters and modes */
def input(tape: Array[Long], relative: Long, param1: Long, mode1: Int, input: Long): Unit
}