Merge branch 'GP-0_ryanmkurtz_PR-4354_alex-bellon_fix-operand-type-flag-comments'

This commit is contained in:
Ryan Kurtz 2022-06-22 01:29:57 -04:00
commit 34cccc8a99

View file

@ -1,6 +1,5 @@
/* ###
* IP: GHIDRA
* REVIEWED: YES
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -59,7 +58,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 +66,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;
/**