Remove NOP argument requirement

This commit is contained in:
GabrielTofvesson 2019-04-08 22:12:11 +02:00
parent 2a8eff03a0
commit 12e5aa4913

View File

@ -1,5 +1,5 @@
enum class ALU(val value: Int, val parameters: Int = 1) {
NOP(0b0000), // No operation
NOP(0b0000, 0), // No operation
MOV(0b0001), // Move from bus to AR
MVN(0b0010), // Move inverse of bus to AR
MVZ(0b0011, 0), // Set AR to zero