Skip to content

Commit

Permalink
Correct the comment about CondRead
Browse files Browse the repository at this point in the history
  • Loading branch information
ZehMatt committed Jun 30, 2024
1 parent e6b521b commit 1d78e4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zasm/include/zasm/base/operand.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace zasm
Read = (1U << 0),
// The operand is written by the instruction (must write).
Write = (1U << 1),
// The operand is conditionally written by the instruction (may write).
// The operand is conditionally read by the instruction (may read).
CondRead = (1U << 2),
// The operand is conditionally written by the instruction (may write).
CondWrite = (1U << 3),
Expand Down

0 comments on commit 1d78e4d

Please sign in to comment.