Delete OpCode4.scala

This commit is contained in:
kamoshi 2019-12-06 23:11:30 +01:00 committed by GitHub
parent 56edc706fc
commit 94297a5463
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +0,0 @@
package day5.opcode
/** Output */
case object OpCode4 extends Action
{
/** length of an instruction */
override val length: Int = 2
/** 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 =
{
mode1 match
{
case 0 => println(accessor(param1, 0, tape))
case 1 => println(param1)
}
}
}