Fixed comments for OperandType flags

This commit is contained in:
alex-bellon 2022-06-17 16:30:00 -07:00
parent 00dbd26511
commit 6f8cd7eaa0

View file

@ -59,7 +59,7 @@ public final class OperandType {
public final static int DATA = 0x00000080;
/**
* Bit set if the operand is a register.
* Bit set if the operand is a port.
*/
public final static int PORT = 0x00000100;
/**
@ -67,7 +67,7 @@ public final class OperandType {
*/
public final static int REGISTER = 0x00000200;
/**
* Bit set if the operand is a register.
* Bit set if the operand is a list.
*/
public final static int LIST = 0x00000400;
/**