Delete OpCode7.scala

This commit is contained in:
kamoshi 2019-12-06 23:11:43 +01:00 committed by GitHub
parent e5849bd1cc
commit 5bafb677ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,16 +0,0 @@
package day5.opcode
case object OpCode7 extends Action
{
/** length of an instruction */
override val length: Int = 4
/** Executes instruction for given parameters and modes */
override def exec(tape: Array[Int], param1: Int, param2: Int, param3: Int, mode1: Int, mode2: Int, mode3: Int): Unit =
{
if (accessor(param1, mode1, tape) < accessor(param2, mode2, tape))
writer(param3, 0, tape, 1)
else
writer(param3, 0, tape, 0)
}
}