Add TODO reminder to add support for unknown opcodes

This commit is contained in:
Ben Gruver 2012-12-29 18:07:03 -08:00
parent 97440a495b
commit 0843bbe9c6

View File

@ -343,6 +343,7 @@ public enum Opcode
case 0x300:
return ARRAY_PAYLOAD;
default:
// TODO: handle unknown opcodes (treat as nop)
return opcodesByValue[opcodeValue];
}
}